欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

[點晴永久免費OA]刪除所有的用戶表,存儲過程,游標的應用,動態SQL的使用

admin
2020年3月3日 2:6 本文熱度 2509
--存儲過程,刪除某數據庫中所有的用戶表,游標的應用,動態SQL的使用
--
思路:先刪除所有的外鍵,再刪除所有的表;以免外鍵的存在導致不能刪表
--
sys.objects表中parent_object_id表示某對象所依附的對象的ID,如外鍵所在表的ID
--
sys.foreign_keys表中有所有外鍵的信息,也有parent_object_id屬性
create database test
go
use test

go
create proc dropAllUserTable as
begin
--聲明游標,獲得外鍵的名字及其所在的表的對象ID,
--sys.objects中type in [''F'',''U'']分別表示外鍵及用戶表
declare cursorForeignKey cursor for
select [name], parent_object_id from sys.objects where [type]=''F''
open cursorForeignKey
declare @fkName nvarchar(30), @objId int, @tn nvarchar(30)
--提取外鍵的名字及其所在的表的對象ID到變量@fkName, @objId中
fetch next from cursorForeignKey into @fkName, @objId
while @@fetch_status=0 --刪除所有的外鍵
begin
select @tn=[name] from sys.objects where [object_id]= @objId
set @tn=quotename(@tn)
exec(''alter table '' + @tn + '' drop constraint '' + @fkName)
fetch next from cursorForeignKey into @fkName, @objId
end
close cursorForeignKey
deallocate cursorForeignKey

declare cursorTableName cursor for
select [name] from sys.objects where type=''U''
open cursorTableName

fetch next from cursorTableName into @tn
while @@fetch_status=0 --刪除所有的表
begin
set @tn=quotename(@tn)
exec (''drop table '' + @tn)
fetch next from cursorTableName into @tn
end
close cursorTableName
deallocate cursorTableName
end

go
--測試,a,b兩表相互參照
create table a(a int primary key, b int)
create table b(a int primary key, b int references a(a))
alter table a add foreign key(b) references b(a)

--drop table a,b --出錯!

exec dropAllUserTable --調用存儲過程,刪除所有用戶表

該文章在 2020/3/3 2:06:07 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved