开发者

Query temp table in stored proc whilst debugging in SQL 2008 Management Studio

I have a really large stored procedure which calls other stored procedures and applies the results into temp tables.

I am de开发者_StackOverflow社区bugging in SQL 2008 Management Studio and can use the watch window to query local parameters but how can I query a temp table on whilst debugging?

If its not possible is there an alternative approach? I have read about using table variables instead, would it be possible to query these? If so how would I do this?


Use global temporary tables, i.e. with double hash.

insert into ##temp select ...

While debugging, you can pause the SP at some point, and in another query window, the ## table is available for querying.

select * from ##temp

Single hash tables (#tmp) is session specific and is only visible from the session.


I built a procedure which will display the content of a temp table from another database connection. (which is not possible with normal queries). Note that it uses DBCC PAGE & the default trace to access the data so only use it for debugging purposes.


an alternative would be to use a variable in your stored proc that allows for debug on the fly.

i use a variable called @debug_out (BIT).

works something like this

ALTER PROCEDURE [dbo].[usp_someProc]

@some_Var VARCHAR(15) = 'AUTO',

@debug_Out BIT = 0

BEGIN

  IF @debug_Out = 1
       BEGIN
            PRINT('THIS IS MY TABLE');
            SELECT * FROM dbo.myTable;
       END ................ 

END

the great thing about doing this is when your code launches your stored procedure, the default is to show none of these debug sections. when you want to debug, you just pass in your debug variable.

EXEC usp_someProc @debug_Out = 1


simply dont drop temp table or close transaction

eg

select * into #temp from myTable

select * from #temp
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜