I would like this to be the ultimate discussion on how to check if a table exists in SQL Server 2000/2005 using SQL Statements.
When you Google for the answer, you g
We always use the OBJECT_ID style for as long as I remember
OBJECT_ID
IF OBJECT_ID('*objectName*', 'U') IS NOT NULL