Aug 22, 2002 #1 TonyKhela Technical User May 7, 2002 157 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 Jul 24, 2002 28 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 May 7, 2002 157 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 Feb 13, 2000 4,690 US Did you try. set nocount on This suppresses informational messages. Upvote 0 Downvote