vote up 0 vote down star

How to check if the global Temporary table exists in SQL server, if yes then delete that global temporary table?

I am trying to execute this:

IF OBJECT_ID('##Table', 'U') IS NOT NULL  
  DROP TABLE ##Table

...but it is not working.

flag

56% accept rate

3 Answers

vote up 3 vote down check

To check the presence of temp table and delete it

IF OBJECT_ID('tempdb..##Table' , 'U') IS NOT NULL
   drop TABLE ##Table
link|flag
thanks, it got me working – Jason M Oct 16 at 17:43
vote up 0 vote down

look in this View to see if the table exists:

[tempdb].[INFORMATION_SCHEMA].[TABLES]
link|flag
vote up 3 vote down

You can detect temp table presence with

IF OBJECT_ID('tempdb.dbo.##Table', 'U') IS NOT NULL

and, surprisingly to me, you can drop it from any connection with

DROP TABLE ##Table

However, I can't help but think that doing so would be a bad idea, since presumably the connection/user who created it might still be using it...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.