Find the Long Running Queries in SQL Server

  

go

use master

 

go

 -- Do not lock anything, and do not get held up by any locks. 

 SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED 

 

 -- What SQL Statements Are Currently Running? 

 SELECT distinct [Spid] = session_Id 

 --, ecid 

 , [Database] = DB_NAME(sp.dbid) 

 , [User] = nt_username 

 , [Status] = er.status 

 , [Wait] = wait_type 

 , [Individual Query] = SUBSTRING (qt.text, er.statement_start_offset/2, 

 (CASE WHEN er.statement_end_offset = -1 

 THEN LEN(CONVERT(NVARCHAR(MAX), qt.text)) * 2 

 ELSE er.statement_end_offset END - er.statement_start_offset)/2) 

  ,[Parent Query] = qt.text 

 , start_time

 , getdate() 'current time'

 , Program = program_name 

 , Hostname 

 , nt_domain 

 

 FROM MASTER.sys.dm_exec_requests er 

 INNER JOIN MASTER.sys.sysprocesses sp ON er.session_id = sp.spid 

 CROSS APPLY MASTER.sys.dm_exec_sql_text(er.sql_handle) as qt 

 WHERE session_Id > 50 -- Ignore system spids. 

 AND session_Id NOT IN (@@SPID) -- Ignore this current statement. 

 ORDER BY start_time

 

 --select * from ipdetails

--where SystemName='SOLVERLAPTOP93'

 

--[10:18] sa/P@ss123

 

--[15:29] DECLARE @sqltext VARBINARY(128)

--SELECT @sqltext = sql_handle

--FROM sys.sysprocesses

--WHERE spid = 84

--SELECT TEXT

--FROM ::fn_get_sql(@sqltext)

 

--kill 298

Comments

Popular Posts