I would like this to be the ultimate discussion on how to check if a table exists in SQL Server 2000/2005 using SQL Statement.

When you Google for the answer, you get so many different answers. Is there an official/backward & forward compatible way of doing it?

Here are two possible ways of doing it. Which is the standard/best way of doing it?

IF EXISTS (SELECT 1 
           FROM INFORMATION_SCHEMA.TABLES 
           WHERE TABLE_TYPE='BASE TABLE' 
           AND TABLE_NAME='mytablename') 
   SELECT 1 AS res ELSE SELECT 0 AS res;

IF OBJECT_ID (N'".$table_name."', N'U') IS NOT NULL 
   SELECT 1 AS res ELSE SELECT 0 AS res;

MySQL provides a nice SHOW TABLES LIKE '%tablename%'; statement. I am looking for something similar.

link|improve this question

feedback

8 Answers

up vote 114 down vote accepted

For queries like this it is always best to use an INFORMATION_SCHEMA view. These views are (mostly) standard across many different databases and rarely change from version to version.

To check if a table exists use:

IF (EXISTS (SELECT * 
                 FROM INFORMATION_SCHEMA.TABLES 
                 WHERE TABLE_SCHEMA = 'TheSchema' 
                 AND  TABLE_NAME = 'TheTable'))
BEGIN
    --Do Stuff
END
link|improve this answer
3  
Works great! In T-SQL (in response to the original poster), though, it's TABLE_SCHEMA, not SCHEMA_NAME. Thanks for the tip. – Nicholas Piasecki Sep 23 '09 at 13:36
How would you avoid having schema_name in the where clause? The benefit of using object_id() approach is that it defaults to the current schema. – haridsv Mar 18 '10 at 21:40
3  
Given that an object name alone (that is, without a schema) is not guaranteed to be unique, there is no 100% failsafe way to do this. If you are working with a DB that has no naming conflicts across schemas then simply omitting the "TABLE_SCHEMA = 'TheSchema'" will work just fine. – akmad Mar 22 '10 at 16:38
2  
To check for a temporary table, we have to query the tempdb database and use a LIKE operator for the table name SELECT * FROM tempdb.INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'TheSchema' AND TABLE_NAME LIKE '#TheTable%' – Pierre-Alain Vigeant Sep 27 '10 at 14:44
awesome ______________________________________ – SonOfOmer Jan 2 '11 at 23:15
feedback

Also note that if for any reason you need to check for a temporary table you can do this:

if OBJECT_ID('tempdb..#test') is not null
 --- temp table exists
link|improve this answer
feedback

We always use the OBJECT_ID style for as long as I remember

IF OBJECT_ID('*objectName*') IS NOT NULL
link|improve this answer
That's what it's for. +1 – ConcernedOfTunbridgeWells Oct 3 '08 at 16:26
5  
I believe this would be fast, though not very portable. Information schema views are guaranteed to exist on any DBRMS that supports the standard. Furthermore, plain OBJECT_ID doesn't guarantee the object's a table. – Joe Pineda Oct 3 '08 at 19:39
Thanks Joe, I was wondering why you would use OBJECT_ID vs INFORMATION_SCHEMA.TABLES vs sys.tables. Pointing out that INFORMATION_SCHEMA is part of a standard pretty much answers that question. BTW it's funny, one of our Database experts that I was going to ask this question has the same last name as you, must be a good last name for databases. – Apeiron Sep 7 '11 at 18:06
@JoePineda: Then you case use OBJECT_ID('TableName', 'U') to guarantee the object is a table. – Allon Guralnek Oct 4 '11 at 16:41
@AllonGuralnek so, instead of following a simple and portable standard, add an extra piece of cryptic info? – Dustin Fineout May 15 at 14:42
show 1 more comment
feedback

Using the Information Schema is the SQL Standard way to do it, so it should be used by all databases that support it.

link|improve this answer
feedback

I know it is an old question but I have found this possibility if you plan to call it often.

create procedure Table_Exists
@tbl varchar(50)
as
return (select count(*) from sysobjects where type = 'U' and name = @tbl)
go
link|improve this answer
1  
-1. Pointless having a procedure for this as it is as much code to call and consume the return as simply to do the select. Should use sysname datatype not varchar(50). Shouldn't use deprecated sysobjects view and takes no account of schema. – Martin Smith Nov 23 '11 at 23:05
feedback

If you need to work on different databases:

DECLARE @Catalog VARCHAR(255)
SET @Catalog = 'MyDatabase'

DECLARE @Schema VARCHAR(255)
SET @Schema = 'dbo'

DECLARE @Table VARCHAR(255)
SET @Table = 'MyTable'

IF (EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES   
    WHERE TABLE_CATALOG = @Catalog 
      AND TABLE_SCHEMA = @Schema 
      AND TABLE_NAME = @Table))
BEGIN
   --do stuff
END
link|improve this answer
feedback

Looking for a table on a different database:

if exists (select * from MyOtherDatabase.sys.tables where name = 'MyTable')
    print 'Exists'
link|improve this answer
feedback
IF  EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Mapping_APCToFANavigator]') AND type in (N'U'))        
BEGIN
   ....
END

Here in the above code, the table name is Mapping_APCToFANavigator. Hope this would help you.

link|improve this answer
If you post code, XML or data samples, please highlight those lines in the text editor and click on the "code samples" button ( { } ) on the editor toolbar to nicely format and syntax highlight it! – marc_s Jun 29 '11 at 13:41
feedback

Your Answer

 
or
required, but never shown

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