Re: recordset from a temp table /ty (resolved)
From: tushar (tgkprog6_at_hotmail.com)
Date: 02/20/04
- Next message: Tibor Karaszi: "Re: Data Types"
- Previous message: Piers Lawson: "Re: Blocked remote calls with COM+ and MSDTC"
- In reply to: Aaron Bertrand - MVP: "Re: recordset from a temp table"
- Next in thread: Aaron Bertrand - MVP: "Re: recordset from a temp table /ty (resolved)"
- Reply: Aaron Bertrand - MVP: "Re: recordset from a temp table /ty (resolved)"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 20 Feb 2004 09:33:54 -0800
hi thanks a TON
- i tried putting SET NOCOUNT ON before the stored proc (
where we put options like SET QUOTED_IDENTIFIER OFF )- but
then realized need too put it in the actual defination
ALTER PROCEDURE aSp_ListMissingJobs AS
Declare @PID int
Declare @EndTo int
Declare @ActualEnd int
Declare @StartFrom int
Declare @SearchJob int
Declare @I int
declare @exStr varchar(200)
Begin
SET NOCOUNT ON
Create Table #Pending(Pen_ID integer,Pen_Job
integer)
---etc...
- Next message: Tibor Karaszi: "Re: Data Types"
- Previous message: Piers Lawson: "Re: Blocked remote calls with COM+ and MSDTC"
- In reply to: Aaron Bertrand - MVP: "Re: recordset from a temp table"
- Next in thread: Aaron Bertrand - MVP: "Re: recordset from a temp table /ty (resolved)"
- Reply: Aaron Bertrand - MVP: "Re: recordset from a temp table /ty (resolved)"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|