使用存储过程检查引起死锁的SQL语句及进程

数据库 SQL Server
如果发生了死锁,如何才能查出引起死锁的进程和SQL语句?我们可以建立存储过程来检测,下面就将为您介绍该存储过程,供您参考,

使用存储过程,可以检测是哪些SQL语句及进程造成死锁,下面就将为您介绍该存储过程,供您参考,希望对您学习SQL有所帮助。

假如发生了死锁,我们怎么去检测具体发生死锁的是哪条SQL语句或存储过程?此时我们可以使用以下存储过程来检测,就可以查出引起死锁的进程和SQL语句。

  use master
  go
  create procedure sp_who_lock
  as
  begin
  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)
  IF @@ERROR<>0 RETURN @@ERROR
  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
  IF @@ERROR<>0 RETURN @@ERROR
  – 找到临时表的记录数
  select @intCountProperties = Count(*),@intCounter = 1
  from #tmp_lock_who
  IF @@ERROR<>0 RETURN @@ERROR
  if @intCountProperties=0
  select ’现在没有阻塞和死锁信息’ as message
  – 循环开始
  while @intCounter <= @intCountProperties
  begin
  – 取***条记录
  select @spid = spid,@bl = bl
  from #tmp_lock_who where Id = @intCounter
  begin
  if @spid =0
  select ’引起数据库死锁的是: ’+ CAST(@bl AS VARCHAR(10))
  + ’进程号,其执行的SQL语法如下’
  else
  select ’进程号SPID:’+ CAST(@spid AS VARCHAR(10))+ ’被’
  + ’进程号SPID:’+ CAST(@bl AS VARCHAR(10)) +’阻塞,其当
  前进程执行的SQL语法如下’DBCC INPUTBUFFER

 

 

【编辑推荐】

SQL语句中CASE WHEN的使用实例

教您不带参数的SQL语句执行的方法

巧用GO将多次重复执行SQL语句

SQL中INSERT语句的使用技巧

SQL语句中output的用法

责任编辑:段燃 来源: 互联网
相关推荐

2010-09-07 15:12:25

SQL语句优化

2009-11-05 18:07:33

Oracle导出sql

2010-09-07 16:46:56

SQL语句nsert

2010-09-10 14:09:23

2010-09-03 14:14:16

SQL删除

2010-09-06 11:05:05

SQL SERVER语句

2011-09-01 17:25:03

SQL Server 查看死锁存储过程

2010-09-07 11:41:24

SQL语句

2010-11-09 16:20:46

SQL Server死

2010-09-01 16:35:12

SQL删除存储过程

2011-05-20 15:59:06

Oracle存储Sql语句

2010-11-12 12:01:08

Oracle存储过程

2010-09-14 10:16:57

sql server

2017-05-16 11:20:51

SQL语句解析

2010-04-16 12:58:48

Oracle sql

2010-09-06 11:24:32

SQL Server语句

2010-09-02 11:24:45

SQL删除

2010-09-03 15:08:03

SQLselect语句

2017-05-03 16:26:24

MySQL并发死锁

2010-07-15 12:38:14

SQL Server存
点赞
收藏

51CTO技术栈公众号