|
database
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Get return value of stored procedure in Query AnalyzerHi. We've got a stored procedure on SQL Server 2000 with a Return statement,
and sending back a number. Is there a way to view the Return value when executing this procedure in Query Analyzer? Right now, it's just displaying how many rows were affected. Thanks. What about a PRINT statement prior to your Return statement?
-- Show quoteJack Vamvas ___________________________________ Receive free SQL tips - www.ciquery.com/sqlserver.htm "dw" <cougarmana_NOSPAM_@uncw.edu> wrote in message news:u3NDF0dSGHA.792@TK2MSFTNGP10.phx.gbl... > Hi. We've got a stored procedure on SQL Server 2000 with a Return statement, > and sending back a number. Is there a way to view the Return value when > executing this procedure in Query Analyzer? Right now, it's just displaying > how many rows were affected. Thanks. > > example
create proc prTestReturnValue as select getdate() return 5 GO declare @i int exec @i =prTestReturnValue select @i http://sqlservercode.blogspot.com/ dw,
declare @rv int exec @rv = dbo.p1 ... select @rv go See "execute" command/statement in BOL. AMB Show quote "dw" wrote: > Hi. We've got a stored procedure on SQL Server 2000 with a Return statement, > and sending back a number. Is there a way to view the Return value when > executing this procedure in Query Analyzer? Right now, it's just displaying > how many rows were affected. Thanks. > > > Thank you all for the answers. That's what I needed and it worked
beautifully :) Show quote "Alejandro Mesa" <AlejandroM***@discussions.microsoft.com> wrote in message news:AF2BF839-61D5-48FE-9845-11532AFB82CF@microsoft.com... > dw, > > declare @rv int > > exec @rv = dbo.p1 ... > > select @rv > go > > See "execute" command/statement in BOL. > > > AMB > > "dw" wrote: > >> Hi. We've got a stored procedure on SQL Server 2000 with a Return >> statement, >> and sending back a number. Is there a way to view the Return value when >> executing this procedure in Query Analyzer? Right now, it's just >> displaying >> how many rows were affected. Thanks. >> >> >> |
|||||||||||||||||||||||