I have a stored procedure where I create several temporary tables. How can I get the list of those temporary tables created in that stored procedure?
Something like this:
SELECT [# temporary table name]
FROM sys.procedures
WHERE name = '<Stored Procedure Name>'
I want this result
Temporary_Table_Name
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
#TemporaryTable1
#TemporaryTable2
.
.
.
#TemporaryTableN
(N row(s) affected)
Then, with that list, I want to built DROP TABLE instructions dynamically.
Dinamic_DROP_Instruction
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
IF OBJECT_ID('tempdb..#TemporaryTable1') IS NOT NULL DROP TABLE #TemporaryTable1
IF OBJECT_ID('tempdb..#TemporaryTable2') IS NOT NULL DROP TABLE #TemporaryTable1
.
.
.
IF OBJECT_ID('tempdb..#TemporaryTableN') IS NOT NULL DROP TABLE #TemporaryTableN
(N row(s) affected)
I was able to construct a code to get the list of temporary tables and also set up the dynamic instruction to DROP each temporary table if it exists.
I leave the code and the links of the sources on which I was based.
CODE: