当前位置: 移动技术网 > IT编程>数据库>MSSQL > sqlserver 批量删除存储过程和批量修改存储过程的语句

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

2017年12月12日  | 移动技术网IT编程  | 我要评论

单向轴承型号,如果我老了原唱,瞬间潜行

修改:
复制代码 代码如下:

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(@@fetch_status = 0)
begin
set @temp='kcb_'+@procname
exec sp_rename @procname,@temp

print(@procname + '已被删除')
fetch next from proccur into @procname
end
close proccur
deallocate proccur

declare proccur cursor
for
select [name] from sysobjects where name like 'kcb%'
declare @procname varchar(100)
declare @temp varchar(100)
declare @temp2 varchar(100)
declare @temp3 varchar(100)
open proccur
fetch next from proccur into @procname
while(@@fetch_status = 0)
begin
set @temp3= len(@procname)
set @temp='kcb_'
set @temp2=right(@procname,@temp3-3)
set @temp+=@temp2
exec sp_rename @procname,@temp

print(@procname + '已被修改')
fetch next from proccur into @procname
end
close proccur
deallocate proccur

删除:
复制代码 代码如下:

declare proccur cursor
for
select [name] from sysobjects where name like 'users_%'
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

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网