sql server斷定數據庫、表、列、視圖能否存在。本站提示廣大學習愛好者:(sql server斷定數據庫、表、列、視圖能否存在)文章只能為提供參考,不一定能成為您想要的結果。以下是sql server斷定數據庫、表、列、視圖能否存在正文
1 斷定數據庫能否存在
if exists (select * from sys.databases where name = '數據庫名')
drop database [數據庫名]
2 斷定表能否存在
if exists (select * from sysobjects where id = object_id(N'[表名]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [表名]
3 斷定存儲進程能否存在
if exists (select * from sysobjects where id = object_id(N'[存儲進程名]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [存儲進程名]
4 斷定暫時表能否存在
if object_id('tempdb..#暫時表名') is not null
drop table #暫時表名
5 斷定視圖能否存在
--斷定能否存在'MyView52'這個試圖
IF EXISTS (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_NAME = N'MyView52')
PRINT '存在'
else
PRINT '不存在'
6 斷定函數能否存在
-- 斷定要創立的函數名能否存在
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[函數名]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[函數名]
7 獲得用戶創立的對象信息
SELECT [name],[id],crdate FROM sysobjects where xtype='U'
8 斷定列能否存在
if exists(select * from syscolumns where id=object_id('表名') and name='列名')
alter table 表名 drop column 列名
9 斷定列能否自增列
if columnproperty(object_id('table'),'col','IsIdentity')=1
print '自增列'
else
print '不是自增列'
SELECT * FROM sys.columns WHERE object_id=OBJECT_ID('表名') AND is_identity=1
10 斷定表中能否存在索引
if exists(select * from sysindexes where id=object_id('表名') and name='索引名')
print '存在'
else
print '不存在'
刪除索引 drop index 表名.索引名
或: drop index 索引名 on 表名(貌似2000不可)
11 檢查數據庫中對象
SELECT * FROM sys.sysobjects WHERE name='對象名' SELECT * FROM sys.sysobjects WHERE name='對象名'