sqlserver 各种判断是否存在(表名、函数、存储过程等)

sql server中如何判断表或者数据库的存在,但在实际使用中,需判断status状态位:
其中某些状态位可由用户使用 sp_dboption(read only、dbo use only、single user 等)进行设置:

1 = autoclose;使用 sp_dboption 设置。 数据库完全关闭,其资源在最后一个用户注销后释放。
4 = select into/bulkcopy;使用 sp_dboption 设置。允许使用 select into 语句和快速大容量复制。
8 = trunc. log on chkpt;使用 sp_dboption 设置。如果数据库处于日志截断模式,则检查点将截断日志中非活动的部分。只能为 master 数据库设置此选项。16 = torn page detection,使用 sp_dboption 设置。可以检测残缺页。
32 = loading。
64 = pre recovery。
128 = recovering。
256 = not recovered。
512 = offline;使用sp_dboption 设置。数据库将处于脱机状态。
1024 = read only;使用 sp_dboption 设置。用户仅能读取数据库中的数据而无法对其进行修改。
2048 = dbo use only;使用sp_dboption 设置。只有数据库所有者可以使用数据库。
4096 = single user;使用 sp_dboption 设置。每次只能有一个用户访问数据库。
32768 = emergency mode。
4194304 = autoshrink。
1073741824 = cleanly shutdown。

可以同时打开多个位。

譬如:判断一个数据库是否offline
select * from master.dbo.sysdatabases where name=’pubs’ and status<>512

sql server中判断表对象是否存在:
select count(*) from sysobjects where id = object_id(‘数据库名.owner.表名’)

if exists
(select count(*) from sysobjects where id = object_id(‘数据库名.owner.表名’))
print ‘存在’
else
print ‘不存在’

sql server中判断表中字段是否存在:
if exists(select * from syscolumns where name=’colname1′ and id=object_id(‘数据库名.owner.表名’))
print ‘存在’
else
print ‘不存在’
代表表tablename1中存在colname1字段
例:
select * from syscolumns where name=’test’ and id=object_id(‘dbo.test’)

access中判断表对象是否存在:
其实,access数据库也有系统表,存放有对象名
select count(*) as qty from msysobjects where ((msysobjects.name) like ‘表名’);

复制代码 代码如下:

库是否存在

if exists(select * from master..sysdatabases where name=n’库名’)

print ‘exists’

else

print ‘not exists’

—————

— 判断要创建的表名是否存在

if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[表名]’) and objectproperty(id, n’isusertable’) = 1)

— 删除表

drop table [dbo].[表名]

go

—————

—–列是否存在

 if col_length( ‘表名’,’列名’) is null

    print ‘not exists’

else

 print ‘exists’

alter table 表名 drop constraint 默认值名称

go

alter table 表名 drop column 列名

go

—–

–判断要创建临时表是否存在

if object_id(‘tempdb.dbo.#test’) is not null

begin

print ‘存在’

end

else

begin

print ‘不存在’

end

—————

— 判断要创建的存储过程名是否存在

if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[存储过程名]’) and objectproperty(id, n’isprocedure’) = 1)

— 删除存储过程

drop procedure [dbo].[存储过程名]

go

—————

— 判断要创建的视图名是否存在

if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[视图名]’) and objectproperty(id, n’isview’) = 1)

— 删除视图

drop view [dbo].[视图名]

go

—————

— 判断要创建的函数名是否存在

if exists (select * from sysobjects where xtype=’fn’ and name=’函数名’)

if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[函数名]’) and xtype in (n’fn’, n’if’, n’tf’))

— 删除函数

drop function [dbo].[函数名]

go

if col_length(‘表名’, ‘列名’) is null

print ‘不存在’

select 1 from sysobjects where id in (select id from syscolumns where name=’列名’) and name=’表名’

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐