vote up 1 vote down star

When writing a T-SQL script that I plan on re-running, often times I use temporary tables to store temporary data. Since the temp table is created on the fly, I'd like to be able to drop that table only if it exists (before I create it).

I'll post the method that I use, but I'd like to see if there is a better way.

flag

50% accept rate

3 Answers

vote up 5 vote down check
If Object_Id('TempDB..#TempTable') Is Not Null
Begin
Drop Table #TempTable
End
link|flag
vote up 0 vote down
Select name From sysobjects Where type='U' and name = 'TempTable'
link|flag
Keith, it looks like that query will find normal user tables, but not temporary tables. – Nathan Bedford Jan 13 at 16:06
vote up 3 vote down

The OBJECT_ID function returns the internal object id for the given object name and type. 'tempdb..#t1' refers to the table #t1 in the tempdb database. 'U' is for user-defined table.

IF OBJECT_ID('tempdb..#t1', 'U') IS NOT NULL
  DROP TABLE #t1

CREATE TABLE #t1(
  id INT IDENTITY(1,1),
  msg VARCHAR(255)
)
link|flag

Your Answer

Get an OpenID
or

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