生龙活虎1986

导航

2013年6月17日

sqlserver 批量删除存储过程和批量修改存储过程的语句

摘要: sqlserver 批量删除存储过程和批量修改存储过程的语句- sqlserver 批量删除存储过程和批量修改存储过程的语句,需要的朋友可以参考下。 -修改: 复制代码 代码如下: declare proccur cursor for select [name] from sysobjects where name like 'Foods_%' declare @procname varchar(100) declare @temp varchar(100) open proccur fetch next from proccur into @procname while(@@ 阅读全文

posted @ 2013-06-17 17:11 生龙活虎1986 阅读(378) 评论(0) 推荐(0) 编辑

利用sql批量删除表,存储过程

摘要: 利用sql批量删除表,存储过程。 最近用godaddy的空间,由于系统里面的表多,一个个的删除很麻烦,就网上搜集了一下解决方法。 给大家分享一下: 1.批量删除存储过程 declare @procName varchar(500) declare cur cursor for select [name] from sys.objects where type = p open cur fetch next from cur into @procName while @@fetch_status = 0 begin if @procName <> DeleteAllProcedure 阅读全文

posted @ 2013-06-17 17:08 生龙活虎1986 阅读(394) 评论(0) 推荐(0) 编辑