Check the existance of a table by querying sysobjects : sysobjects « System Tables Views « SQL Server / T-SQL Tutorial

Home
SQL Server / T-SQL Tutorial
1.Query
2.Insert Delete Update
3.Table
4.Table Join
5.Data Types
6.Set Operations
7.Constraints
8.Subquery
9.Aggregate Functions
10.Date Functions
11.Math Functions
12.String Functions
13.Data Convert Functions
14.Analytical Functions
15.Sequence Indentity
16.View
17.Index
18.Cursor
19.Database
20.Transact SQL
21.Procedure Function
22.Trigger
23.Transaction
24.XML
25.System Functions
26.System Settings
27.System Tables Views
28.User Role
29.CLR
SQL Server / T-SQL Tutorial » System Tables Views » sysobjects 
27.33.5.Check the existance of a table by querying sysobjects
4>    IF EXISTS (SELECT FROM sysobjects WHERE id = object_id('Shippers')
5>    AND OBJECTPROPERTY(id, 'IsUserTable') 1)
6>    DROP TABLE Shippers
7>    GO
1>
2>    CREATE TABLE Shippers(
3>       ShipperID        int         IDENTITY (11NOT NULL,
4>       CompanyName      nvarchar (40NOT NULL,
5>       Phone            nvarchar (24NULL
6>    )
7>    GO
1>
2> drop table Shippers;
3> GO
27.33.sysobjects
27.33.1.sysobjects contains a row for each database object.
27.33.2.Dropping all the triggers in the database using a cursor and dynamic execution.
27.33.3.Retrieving all of the triggers for each table.
27.33.4.Query sysobjects for user table, not system table
27.33.5.Check the existance of a table by querying sysobjects
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.