vote up 8 vote down star
5

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 ways to start discussion:

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;

It's a shame it's so hard to figure out, since MySQL provides a nice SHOW TABLES LIKE '%tablename%'; statement.

flag

73% accept rate

4 Answers

vote up 5 vote down check

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 SCHEMA_NAME = 'TheSchema' AND  TABLE_NAME = 'TheTable'))
BEGIN
	--Do Stuff
END
link|flag
1  
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 at 13:36
vote up 6 vote down

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

link|flag
vote up 5 vote down

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

IF OBJECT_ID('*objectName*') IS NOT NULL
link|flag
That's what it's for. +1 – ConcernedOfTunbridgeWells Oct 3 '08 at 16:26
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
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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