While looking at the Activity Monitor in SQL Server, I notice that under the “Recent Expensive Queries” tab, the “Executions / min” column seems to balloon to a much higher number than it should be.
What does this number actually mean? Is it literally how many times a SQL Query is performed in a minute, or does this number represent something else?
Thanks in advance for the help!
While looking at the Activity Monitor in SQL Server, I notice that under the
Share
The “Expensive Query” you are analyzing might be using other subqueries (Let’s say 10). Then could it be your “Executions / min” count is 10 times higher? Since an execution plan is recompiled for every subqueries?
Found this answer here: