I have a stored procedure looking like this:
SELECT
nTransactionId
,strInstrument
FROM dbo.Deals
I've read that for SQL Server 2012 I can use sp_describe_first_result_set
, but is there any alternative for SQL Server 2008?
When I say I want the column names I mean nTransactionId
and strInstrument
. Even if the query doesn't return any result.
Many thanks!