Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to show value from SP in SSMS?
Message
 
General information
Forum:
Microsoft SQL Server
Category:
Other
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01543491
Message ID:
01543495
Views:
39
>Inside a stored procedure I select a value as following:
>
>select @nValue = FLD_VALUE from TableName where FLD_NAME = 'SOMENAME'
>
>Then, during testing, when I execute this procedure in the SSMS, I want to see the value of @nValue. How do I do it?
>
>TIA.
select @nValue = FLD_VALUE from TableName where FLD_NAME = 'SOMENAME'
--
PRINT @nValue
-- or
SELECT @nValue
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform