主页 > 知识库 > sqlserver 批量删除存储过程和批量修改存储过程的语句

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

热门标签:没听见电话机器人帮你接 最新人工智能电销机器人 陕西电销外呼系统好用吗 数字匠心电销机器人 成都电话外呼系统一般多少钱 如何做地图标注图铺 al智能电话机器人 银川高频外呼回拨系统多少钱 兰州语音外呼系统运营商
修改:
复制代码 代码如下:

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
您可能感兴趣的文章:
  • SQL Server创建链接服务器的存储过程示例分享
  • 在SQL Server 2005中创建CLR存储过程的详细介绍
  • SQL Server 2005 创建简单的存储过程--总结分析
  • sqlserver2008查看表记录或者修改存储过程出现目录名无效错误解决方法
  • SQLServer存储过程创建和修改的实现代码

标签:辽源 巴彦淖尔 通化 宜春 朔州 本溪 邢台 盐城

巨人网络通讯声明:本文标题《sqlserver 批量删除存储过程和批量修改存储过程的语句》,本文关键词  sqlserver,批量,删除,存储,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《sqlserver 批量删除存储过程和批量修改存储过程的语句》相关的同类信息!
  • 本页收集关于sqlserver 批量删除存储过程和批量修改存储过程的语句的相关信息资讯供网民参考!
  • 推荐文章