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='表名'