Is there any option or any setting by which SQL Server can dump the actual execution plan (at that instance) for stored procs involved in a deadlock?
This is in context of SQL Server 2008.
|
Is there any option or any setting by which SQL Server can dump the actual execution plan (at that instance) for stored procs involved in a deadlock? This is in context of SQL Server 2008.
| |||
|
feedback
|
|
No. They are generated separely. THat said, a deadlock is NEVER the result of an execution plan issue, to my knowledge - it is always user code order of operations. | |||||
feedback
|
|
Capture the SQL and plan handle and then you might get the query execution plan from the plan cache. | |||
|
feedback
|
|
SQL Profiler's the best shot you have at this. I go over how I do it here. | |||
|
feedback
|