MS SQL: long running queries

select spid,cmd,status,loginame,open_tran,
  datediff (s,last_batch,getdate()) as [Waittime (s)]
from master..sysprocesses p
where open_tran > 0
           and spid > 50
          and datediff (s,last_batch,getdate()) > 30
          and exists ( select * from master..syslockinfo
                           where req_spid=p.spid and rsc_type <>2)

Leave a Reply

  

  

  

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>