加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

sqlserver删除所有表(表结构和数据)

发布时间:2020-12-12 13:07:40 所属栏目:MsSql教程 来源:网络整理
导读:要删除某个数据库,或者删除数据库中的所有表(删除表结构和数据),需要先删除表间的外键约束,才能删除表。如删除数据库db_wy中的所有表: 第1步**********删除所有表的外键约束*************************/? DECLARE c1 cursor forselect 'alter table ['+

要删除某个数据库,或者删除数据库中的所有表(删除表结构和数据),需要先删除表间的外键约束,才能删除表。如删除数据库db_wy中的所有表:

第1步**********删除所有表的外键约束*************************/?
DECLARE c1 cursor for
select 'alter table ['+ object_name(parent_obj) + '] drop constraint ['+name+']; '
from sysobjects 
where xtype = 'F'
open c1 
declare @c1 varchar(8000) 
fetch next from c1 into @c1 
while(@@fetch_status=0) 
begin
exec(@c1) 
fetch next from c1 into @c1 
end
close c1 
deallocate c1 

第2步**********删除所有表*************************/?
use db_wy 
GO 
declare @sql varchar(8000) 
while (select count(*) from sysobjects where type='U')>0 
begin
SELECT @sql='drop table ' + name
FROM sysobjects 
WHERE (type = 'U') 
ORDER BY 'drop table ' + name
exec(@sql)  
end 

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读