电脑桌面
添加蚂蚁七词文库到电脑桌面
安装后可以在桌面快捷访问

SQL Server数据库如何查看是否有死锁或者阻塞?

来源:金蝶云社区作者:金蝶2024-09-222

SQL Server数据库如何查看是否有死锁或者阻塞?

1、问题描述

SQL Server数据库如何查看是否有死锁或者阻塞?

2、解决方案

将如下脚本复制到数据库服务器后台的查询框中执行,执行的结果可以复制到txt或excel或csv中

use master

go

declare @spid int,@bl int,

@intTransactionCountOnEntry int,

@intRowcount int,

@intCountProperties int,

@intCounter int

create table #tmp_lock_who (

id int identity(1,1),

spid smallint,

bl smallint)

insert into #tmp_lock_who(spid,bl) select 0 ,blocked

from (select * from sysprocesses where blocked>0 ) a

where not exists(select * from (select * from sysprocesses where blocked>0 ) b

where a.blocked=spid)

union select spid,blocked from sysprocesses where blocked>0

-- 找到临时表的记录数

select @intCountProperties = Count(*),@intCounter = 1

from #tmp_lock_who

if @intCountProperties=0

select N'现在没有阻塞和死锁信息' as message

-- 循环开始

while @intCou

SQL Server数据库如何查看是否有死锁或者阻塞?

1、问题描述SQL Server数据库如何查看是否有死锁或者阻塞?2、解决方案将如下脚本复制到数据库服务器后台的查询框中执行,执行的结果可以...
点击下载文档文档为doc格式

声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。如若本站内容侵犯了原著者的合法权益,可联系本站删除。

已经是第一篇
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息
QQ群
  • 答案:my7c点击这里加入QQ群
支持邮箱
微信
  • 微信