码迷,mamicode.com
首页 > 数据库 > 详细

sql中批量删除带有外键的所有表

时间:2015-09-16 00:55:26      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:

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删除所有的表

DECLARE c2 cursor for
select ‘drop table [‘+name +‘]; ‘
from sysobjects
where xtype = ‘u‘
open c2
declare @c2 varchar(8000)
fetch next from c2 into @c2
while(@@fetch_status=0)
begin
exec(@c2)
fetch next from c2 into @c2
end
close c2
deallocate c2

以前在oracle中经常遇到没法删掉数据库的问题(因为一个用户对应一个数据库),所以必须要删除表(要先删除外检约束),在重新生成, 今天在sql试了试,

成功了。

sql中批量删除带有外键的所有表

标签:

原文地址:http://www.cnblogs.com/HKKD/p/sql.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!