While performing the tuning in SQL server sometimes we found that some of the queries are running for a long time and it would block the other transaction.
To get the running query in SQL server we can use the Database Console Command (DBCC) to get the running query.
SYNTAX
DBCC INPUTBUFFER (SPID)
If you know the SPID of the blocking query then the above command would be helpful to get the blocking query.
EXAMPLE
In the query window 1 i ran the below query and my server process ID is 55 and it is highlighted below.
For demonstration purpose i used the following query.
In the query window 2 i ran the DBCC command by passing the Server Process ID obtained from the previous query window 1 as shown below.
After executing the above command I found the Running query in the EventInfo column as shown above.
From this you can find the running query in SQL server.
Refer here to find another way of getting the running query text.
Refer here to find another way of getting the running query text.
No comments:
Post a Comment