How to Check Whether a Global Temporary Exists in a SQL
Database or not?
Answer Posted / guest
Checking whether a table exists in a Microsoft SQL Server
database is easy. You can use this query:
SELECT 'x'
FROM sysobjects
WHERE type = 'U' and NAME = 'mytable'
But this query will not work while searching for global
temporary tables. Global temporary tables are stored in tempdb.
Use this syntax for the search:
DECLARE @temp_table VARCHAR(100)
SET @temp_table = '##my_temp_table'
IF NOT EXISTS (SELECT 'x'
FROM tempdb..sysobjects
WHERE type = 'U' and NAME = @temp_table)
PRINT 'temp table ' + @temp_table + ' does not exist'
ELSE
PRINT 'temp table ' + @temp_table + ' exists.'
Note: You cannot search for local temporary tables (# prefix
tables) in this way. This is because SQL Server appends a
unique number to the name you supply. For example, if you
specified "#temp," the name in sysobjects would be something
like "#temp____1234."
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is report server project?
Mention the different authentication modes in sql server.
between cast and convert which function would you prefer and why?
Describe in brief databases and sql server databases architecture.
What are the new features in sql server 2016?
What different steps will a sql server developer take to secure sql server?
What is reference section?
What is a performance monitor?
What do you know about system database? : SQL Server Architecture
What is ms sql server service broker?
What are partitioned views?
What is ssl in sql server?
what is hash nonclustered index
What do you understand by mirroring?
Explain time data type in sal server 2008?