博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sqlserver 批量删除存储过程(转)
阅读量:6479 次
发布时间:2019-06-23

本文共 511 字,大约阅读时间需要 1 分钟。

sqlserver一次只能删除一个存储过程,如果多了,需要很长时间才能删完,所以写了一段语句,直接就把当然数据库下所有用户自定义的存储过程给drop了。不过使用都请留心,当前打开的数据库哦。下面贴代码

declare proccur cursor    for        select [name] from sysobjects where type='P'declare @procname varchar(100)open proccurfetch next from proccur into @procnamewhile(@@FETCH_STATUS = 0)begin       --exec('drop proc ' + @procname)  --本句被注释,使用时请取消    print(@procname + '已被删除')    fetch next from proccur into @procnameendclose proccurdeallocate proccur

 

原文地址:

转载于:https://www.cnblogs.com/MirageFox/p/4952848.html

你可能感兴趣的文章
js url传值中文乱码之解决之道
查看>>
Trusty TEE
查看>>
[LeetCode] Reverse String 翻转字符串
查看>>
学习iOS【3】数组、词典和集合
查看>>
Hessian 原理分析--转
查看>>
转: 基于netty+ protobuf +spring + hibernate + jgroups开发的游戏服务端
查看>>
easyui传入map的数据前台展示出tree格式数据
查看>>
悲观的思考,乐观的生活.我们既需要思考的深度,也需要生活的温度!
查看>>
java.math.BigDecimal
查看>>
Vitamio中文API文档(4)—— VitamioInstaller
查看>>
yii框架常用url地址
查看>>
python3.4学习笔记(十六) windows下面安装easy_install和pip教程
查看>>
MyGUI 解析
查看>>
Linux中的ls命令详细使用
查看>>
graph-tool文档(一)- 快速开始使用Graph-tool - 2.属性映射、图的IO和Price网络
查看>>
GraphicsLab Project之辉光(Glare,Glow)效果 【转】
查看>>
<转>Python: __init__.py 用法
查看>>
Linux Curl命令
查看>>
-27979 LoadRunner 错误27979 找不到请求表单 Action.c(73): Error -27979: Requested form not found...
查看>>
[LeetCode] Minimum Depth of Binary Tree
查看>>