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.
|
|
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:
...but it is not working.
|
|||
|
|
|
|
To check the presence of temp table and delete it
|
||
|
|
|
look in this View to see if the table exists:
|
||
|
|
|
|
You can detect temp table presence with
and, surprisingly to me, you can drop it from any connection with
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... |
||
|
|