Showing posts with label List of Actively running commands by SPID in SQL Server. Show all posts
Showing posts with label List of Actively running commands by SPID in SQL Server. Show all posts

Wednesday, May 19, 2010

List of Actively running commands by SPID in SQL Server

This following code snippet would list all the actively running commands by SPID


select session_id, Text

from sys.dm_exec_requests r

cross apply sys.dm_exec_sql_text(sql_handle) t