Aug 22, 2002 #1 TonyKhela Technical User Joined May 7, 2002 Messages 157 Location GB When using a select statement wthin an SP , can we make the stored-procedure not to return a result set?
When using a select statement wthin an SP , can we make the stored-procedure not to return a result set?
Aug 22, 2002 #2 DangerPowers Programmer Joined Jul 24, 2002 Messages 28 Location US I think want you want to use is the SET FMTONLY ON command. Upvote 0 Downvote
Aug 28, 2002 Thread starter #3 TonyKhela Technical User Joined May 7, 2002 Messages 157 Location GB No, the fmtonly still returns the schema. I dont want any resultset at all. Any other ideas? Upvote 0 Downvote
Aug 28, 2002 #4 cmmrfrds Programmer Joined Feb 13, 2000 Messages 4,690 Location US Did you try. set nocount on This suppresses informational messages. Upvote 0 Downvote