March Madness – SQL Azure – sys.dm_exec_requests
Yesterday we looked at how to view the current connections to your instance of SQL Azure. Today we will look at how to see the current requests by examining the sys.dm_exec_requests system view. The following statement will return all current requests that are running against your SQL Azure instance: SELECT * FROM sys.dm_exec_requests Running that … Read more