標籤:style blog color io os 使用 ar for 檔案
sqlserver刪除資料庫中所有的表
-------------------------------------------------------------------------------------------
開啟Sql server management studio並建立一個查詢,在開啟的XXX.SQL檔案中輸入:
execsp_MSforeachtable @command1=‘Delete from ?‘execsp_MSforeachtable @command1 = "TRUNCATE TABLE ?"
然後執行語句。
------------------------------------------------------------------------------------------
如果由於外鍵約束刪除table失敗,則先刪除所有約束:
--/第1步**********刪除所有表的外鍵約束*************************/
DECLARE c1 cursor forselect ‘alter table [‘+ object_name(parent_obj) + ‘] drop constraint [‘+name+‘]; ‘from sysobjectswhere xtype = ‘F‘open c1declare @c1 varchar(8000)fetch next from c1 into @c1while(@@fetch_status=0)beginexec(@c1)fetch next from c1 into @c1endclose c1deallocate c1
--/第2步**********刪除所有表*************************/
use 資料庫名(是要刪除表的所在的那個資料庫的名稱)
GOdeclare @sql varchar(8000)while (select count(*) from sysobjects where type=‘U‘)>0beginSELECT @sql=‘drop table ‘ + nameFROM sysobjectsWHERE (type = ‘U‘)ORDER BY ‘drop table ‘ + nameexec(@sql)end
刪除所有的預存程序同理可得,但不需要走第一步,只需將第2步的代碼的where xtype=‘U‘ 改成 where xtype=‘P‘,drop table 改成 drop Procedure
sysobjects的xtype代表含義:
在資料庫內建立的每個對象(約束、預設值、日誌、規則、預存程序等)在表中佔一行。只有在 tempdb 內,每個臨時對象才在該表中佔一行。
列名 資料類型 描述
name sysname 對象名。
Id int 對象標識號。
xtype char(2) 物件類型。可以是下列物件類型中的一種:
C = CHECK 條件約束
D = 預設值或 DEFAULT 約束
F = FOREIGN KEY 約束
L = 日誌
FN = 純量涵式
IF = 內嵌表函數
P = 預存程序
PK = PRIMARY KEY 約束(類型是 K)
RF = 複製篩選預存程序
S = 系統資料表
TF = 表函數
TR = 觸發器
U = 使用者表
UQ = UNIQUE 約束(類型是 K)
V = 視圖
X = 擴充預存程序
uid smallint 所有者對象的使用者識別碼。
info smallint 保留。僅限內部使用。
status int 保留。僅限內部使用。
base_schema_
ver int 保留。僅限內部使用。
replinfo int 保留。供複製使用。
parent_obj int 父物件的對象標識號(例如,對於觸發器或約束,該標識號為表 ID)。
crdate datetime 對象的建立日期。
ftcatid smallint 為全文索引註冊的所有使用者表的全文檢索目錄標識符,對於沒有註冊的所有使用者表則為 0。
schema_ver int 版本號碼,該版本號碼在每次表的架構更改時都增加。
stats_schema_
ver int 保留。僅限內部使用。
type char(2) 物件類型。可以是下列值之一:
C = CHECK 條件約束
D = 預設值或 DEFAULT 約束
F = FOREIGN KEY 約束
FN = 純量涵式
IF = 內嵌表函數
K = PRIMARY KEY 或 UNIQUE 約束
L = 日誌
P = 預存程序
R = 規則
RF = 複製篩選預存程序
S = 系統資料表
TF = 表函數
TR = 觸發器
U = 使用者表
V = 視圖
X = 擴充預存程序
userstat smallint 保留。
sysstat smallint 內部狀態資訊。
indexdel smallint 保留。
refdate datetime 留作以後使用。
version int 留作以後使用。
deltrig int 保留。
instrig int 保留。
updtrig int 保留。
seltrig int 保留。
category int 用於發布、約束和標識。
cache smallint 保留。
sqlserver刪除資料庫中所有的表