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

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

热门标签:AI电销 网站排名优化 呼叫中心市场需求 服务外包 百度竞价排名 地方门户网站 铁路电话系统 Linux服务器
修改:
复制代码 代码如下:

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 批量删除存储过程和批量修改存储过程的语句》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266