Today we have an alert from one of the client server about blocking, I have immediately start looking at it using below statement
SELECT * FROM
MASTER..SYSPROCESSES
WHERE BLOCKED != 0
Yes, I’ve found the culprit SPID that is occupying more resources, using DBCC INPUTBUFFER(SPID). so, instead of
seeing what exactly this SPID is doing I have received SP_EXECUTESQL, surprised!!! No, it’s bound to happen when
SPID is running dynamic TSQL (using SP_EXECUTESQL) and/or cursor. But, yes, at the same time
I would like to know...