sqlserver删除所有表、视图、存储过程

复制代码
declare proccur cursor
    for
        select [name] from sysobjects where type='P'
declare @procname varchar(100)
open proccur
fetch next from proccur into @procname
while(@@FETCH_STATUS = 0)
begin   
    --exec('drop proc ' + @procname)  --本句被注释,使用时请取消

    print(@procname + '已被删除')
    fetch next from proccur into @procname
end
close proccur
deallocate proccur
--------------------- 
版权声明:本文为CSDN博主「xianyiqi」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/xianyiqi/article/details/4297521

复制代码

删除存储过程

 

 

 

 

复制代码
--/第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 命名空间21 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
复制代码

删除表

 

 

复制代码
--第一步,读取所有视图
select identity(int,1,1) flag,[name] names into #tmp2
from sysobjects where xtype='v'
--第二步循环删除
 
 declare @sql varchar(8000)
while (select count(*) from #tmp2  )>0
begin
SELECT @sql='drop view ' + names
FROM #tmp2
 
ORDER BY  + names

exec(@sql)

SELECT @sql='delete  from #tmp2 where names =''' + names+N'''' FROM #tmp2  ORDER BY  + names

exec(@sql)

end
复制代码

删除所有的视图

posted @   纵一苇之所如-  阅读(1470)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· DeepSeek 开源周回顾「GitHub 热点速览」
点击右上角即可分享
微信分享提示