資料庫死鎖檢測語句

2021-06-23 07:56:03 字數 3201 閱讀 5595

declare @kill_lock_spid bit=0,   --是否殺掉死鎖的程序,1 殺掉, 0 僅顯示

@show_spid_if_nolock bit=1 --如果沒有死鎖的程序,是否顯示正常程序資訊,1 顯示,0 不顯示

declare @count int,@s nvarchar(1000),@i int

if object_id('tempdb..#t') is not null

drop table #t;

if object_id('tempdb..#t1') is not null

drop table #t1;

create table #t(

[id] [int] identity(1,1) not null,

[標誌] [varchar](10) not null,

[程序id] [smallint] not null,

[執行緒id] [smallint] not null,

[塊程序id] [smallint] not null,

[資料庫id] [smallint] not null,

[資料庫名] [nvarchar](128) null,

[使用者id] [smallint] null,

[使用者名稱] [nvarchar](128) not null,

[累計cpu時間] [int] not null,

[登陸時間] [datetime] not null,

[開啟事務數] [smallint] not null,

[程序狀態] [nvarchar](128) not null,

[工作站名] [nvarchar](128) not null,

[應用程式名] [nvarchar](128) not null,

[工作站程序id] [nvarchar](128) not null,

[網域名稱] [nvarchar](128) not null,

[網絡卡位址] [nvarchar](128) not null

)insert into #t

select 標誌,

程序id=spid,執行緒id=kpid,塊程序id=blocked,資料庫id=dbid,

資料庫名=db_name(dbid),使用者id=uid,使用者名稱=loginame,累計cpu時間=cpu,

登陸時間=login_time,開啟事務數=open_tran, 程序狀態=status,

工作站名=hostname,應用程式名=program_name,工作站程序id=hostprocess,

網域名稱=nt_domain,網絡卡位址=net_address

from(

select 標誌='死鎖的程序',

spid,kpid,a.blocked,dbid,uid,loginame,cpu,login_time,open_tran,

status,hostname,program_name,hostprocess,nt_domain,net_address,

s1=a.spid,s2=0

from master..sysprocesses a join (

select blocked from master..sysprocesses group by blocked

)b on a.spid=b.blocked where a.blocked=0

union all

select '|_犧牲品_>',

spid,kpid,blocked,dbid,uid,loginame,cpu,login_time,open_tran,

status,hostname,program_name,hostprocess,nt_domain,net_address,

s1=blocked,s2=1

from master..sysprocesses a where blocked<>0

) aorder by s1,s2

select @count=@@rowcount,@i=1

if @count=0 and @show_spid_if_nolock=1

begin

insert #t

select 標誌='正常的程序',

spid,kpid,blocked,dbid,db_name(dbid),uid,loginame,cpu,login_time,

open_tran,status,hostname,program_name,hostprocess,nt_domain,net_address

from master..sysprocesses

set @count=@@rowcount

endif @count>0

begin

create table #t1(id int identity(1,1),a nvarchar(1024),b int,eventinfo nvarchar(max))

if @kill_lock_spid=1

begin

declare @spid varchar(10),@標誌 varchar(10)

while @i<=@count

begin

select @spid=程序id,@標誌=標誌 from #t where id=@i

insert #t1 exec('dbcc inputbuffer('+@spid+')')

if @@rowcount=0 insert #t1(a) values(null)

if @標誌='死鎖的程序' exec('kill '+@spid)

set @i=@i+1

endend

else

while @i<=@count

begin

select @s='dbcc inputbuffer('+cast(程序id as varchar)+')' from #t where id=@i

insert #t1 exec(@s)

if @@rowcount=0 insert #t1(a) values(null)

set @i=@i+1

endselect a.*,程序的sql語句=b.eventinfo

from #t a 

join #t1 b on a.id=b.id

order by 程序id

enddrop table #t

drop table #t1

原倉 謝..

查詢資料庫死鎖語句儲存過程

use master go object storedprocedure dbo p lockinfo script date 2016 11 23 16 29 01 set ansi nulls on goset quoted identifier on go 處理死鎖 檢視當前程序,或死鎖程序,...

資料庫死鎖

1.死鎖的概念 死鎖是程序死鎖的簡稱,是由dijkstra於1965年研究銀行家演算法時首先提出來的。它是計算機作業系統乃至併發程式設計中最難處理的問題之一。實際上,死鎖問題不僅在計算機系統中存在,在我們日常生活中它也廣泛存在。我們先看看這樣乙個生活中的例子 在一條河上有一座橋,橋面較窄,只能容納一...

資料庫死鎖

資料庫在進行insert,update,delete這些更新操作的時候為了保證資料一致性都會使用排他鎖。乙個事務裡進行update操作,在事務結束之前 commit or rollback 排他鎖不會被釋放。因此在乙個事務裡update多條資料的時候執行順序就尤為重要,兩個併發事務中更新操作的執行順...