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