批量删除SQL数据库中的用户表_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

批量删除SQL数据库中的用户表

作者:黑客防线网安网站维护基地 来源:黑客防线网安网站维护基地 浏览次数:0

本篇关键词:SQL数据库
黑客防线网安网讯:本文章龙虎鹰师网安针对sql2000中的一些数据库用户表做的小课 批量删除SQL数据库中的用户表
本文章黑客防线网安针对sql2000中的一些数据库用户表做的小课 批量删除SQL数据库中的用户表
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
--删除表
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
    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-4577-1.html
网站维护教程更新时间:2012-01-11 04:21:39  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer