SQL 2005 잠 금 저장 프로시저 보기 spwho_lock

1940 단어 자물쇠sp who lock
다음은 제 가 정리 한 sql server 데이터 베 이 스 를 모니터링 하 는 것 입 니 다.성능 테스트 과정 에서 잠 금,막 힌 SQL 문 구 는 비교적 준비 되 어 있 고 남아 서 준비 하 는 편 입 니 다.
호출 방법:해당 데이터 베 이 스 를 선택 하고 exec sp 를 실행 합 니 다.who_lock

USE [master]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO


CREATE procedure [dbo].[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 (@bl ) 
	end 

	--        
	set @intCounter = @intCounter + 1 
end 

drop table #tmp_lock_who 

return 0 
end

좋은 웹페이지 즐겨찾기