Does Adam Machanic's sp_WhoIsActive return the actual query plan or the estimated plan when run with @get_plans=1 ?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
|
|||
|
|
|
The tool grabs the plan that is being run at that time. From an email response from Adam: "Actual plan" usually refers to the query plan that has the actual row counts, number of executions of each iterator, etc. Who is Active cannot return that version of the plan. But the plan it returns is indeed the "actual" plan that's running at the time -- in other words, the plan will not be recompiled into some other plan by the time Who is Active can get it. |
|||
|
|