博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
杀死数据库进程
阅读量:6676 次
发布时间:2019-06-25

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

use  mastergo if  exists  (select  *  from  dbo.sysobjects  where  id  =  object_id(N'[dbo].[p_killspid]')  and  OBJECTPROPERTY(id,  N'IsProcedure')  =  1)drop  procedure  [dbo].[p_killspid]GO create  proc  p_killspid@dbname  varchar(200) --要关闭进程的数据库名as     declare  @sql    nvarchar(500)     declare  @spid  nvarchar(20) declare  #tb  cursor  forselect  spid=cast(spid  as  varchar(20))  from  master..sysprocesses  where  dbid=db_id(@dbname)open  #tbfetch  next  from  #tb  into  @spidwhile  @@fetch_status=0begin     exec('kill  '+@spid)fetch  next  from  #tb  into  @spidend     close  #tbdeallocate  #tbgo --用法     exec  p_killspid    '库'

 

 

转载于:https://www.cnblogs.com/wlwjc/archive/2013/01/10/2854180.html

你可能感兴趣的文章
NIO(三):缓冲区 Buffer
查看>>
我的友情链接
查看>>
问问自己
查看>>
我的友情链接
查看>>
java设计模式-工厂模式
查看>>
微信小程序开发--从px到rpx:
查看>>
Mysql常用命令行大全
查看>>
Nginx安全配置研究
查看>>
10 个 Nginx 的安全提示
查看>>
消息智能路由组件SmartRoute
查看>>
解决vdbench的打印messages日志的问题
查看>>
mysql设置远程访问
查看>>
Extjs4中tree的拖拽功能(可以两棵树之间拖拽) 简单实例
查看>>
VDR 2.0安装部署
查看>>
负载均衡—nginx https服务
查看>>
jackjson解决 Unrecognized field
查看>>
百度ueditor 1.4.3 jsp开发版简单配置及图片上传
查看>>
git使用
查看>>
日志分析-2.发送windows日志到一个远程的rsyslog服务器上
查看>>
分析现在互联网上信息可信性的现状
查看>>