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 are the new features introduced in SQL Server 2000? What changed between the previous version of SQL Server and the current version?
What is nolock hint in sql server 2008
List the different normalization forms?
What is the difference between a "where" clause and a "having" clause?
Explain the purpose of indexes?
What is the difference between the export /import functions in sql studio and standalone sql manager? : sql server management studio
Can a stored procedure call itself or recursive stored procedure? How much level sp nesting is possible?
How to use order by with union operators in ms sql server?
What is cursors? And what are the different types of cursor?
How can I create a report based on a query? : sql server management studio
Differentiate between ms sql server reporting services vs crystal reports?
How can you stop stored procedures from recompiling?
What is a rollup clause?
What do you mean by data manipulation language?
What is ms sql server index?