Estimated Plans and Forced Plans from Query Store
Let's take a look at estimated plans and forced plans from query store and explore the differences if there are any.
Join the DZone community and get the full member experience.
Join For FreeWhile all plans are estimated plans, there is still a difference between capturing an estimated plan and looking at a plan from the cache or from query store. Or is there?
A question came up during a recent presentation: "What happens to capturing an estimated plan when you're forcing plans?"
Let's find out. The answer is interesting.
Estimated Plans
Here's my stored procedure that I'll be using with AdventureWorks2017:
CREATE OR ALTER PROC dbo.ProductTransactionHistoryByReference (@ReferenceOrderID INT)
AS
BEGIN
SELECT p.Name,
p.ProductNumber,
th.ReferenceOrderID
FROM Production.Product AS p
JOIN Production.TransactionHistory AS th
ON th.ProductID = p.ProductID
WHERE th.ReferenceOrderID = @ReferenceOrderID;
END;
For reasons I'll explain in a bit, I'm going to free the procedure cache:
ALTER DATABASE SCOPED CONFIGURATION CLEAR PROCEDURE_CACHE;
Then, if I capture an estimated plan for two different values:
EXEC dbo.ProductTransactionHistoryByReference @ReferenceOrderID = 41798;
EXEC dbo.ProductTransactionHistoryByReference @ReferenceOrderID = 1255;
I end up with two different execution plans:
This is because the different values have different data distribution within my statistics and parameter sniffing leads to a difference in the plans.
Plan Forcing
If I execute each example query, clearing the cache between each, I have both available in the Query Store. I choose to force a plan, let's say the first one. In this case, I'll use the GUI:
Now, I go right back over and capture the estimated plans again, I'll still see the same thing as I saw above. In short, plan forcing doesn't affect capturing estimated plans...unless...
Let's execute one of the two scripts for the stored procedure. It doesn't matter which one. Because of plan forcing, you'll end up with the top plan being stored in cache. Now, let's try capturing the estimated plan again. No matter which set of parameters you use, you should see this plan (or whichever one you forced):
But... why? Well, the trick is in whether or not the plan is in cache. If we look at the properties of the SELECT operator in the plan above, a few points immediately stand out:
First, you can tell that this is still an estimated plan because the Runtime parameter value is missing. However, at the bottom of the properties is the Use plan property, which is only there in forced plans, showing this plan was forced. But why, when we're not executing the query, are we seeing the forced plan? Well, the other property of interest here is the RetrievedFromCache property, which in this case, is true. What if we free the procedure cache again and then recapture the estimated plan:
This is the plan for the second value, not the forced plan, even though plan forcing is still in effect. I haven't changed that. All I've changed is where the estimated plan comes from. Let's look at the properties of the SELECT operator here:
Notice two things. First, there is no Use plan at the bottom. Second, and more importantly, RetrievedFromCache is set to false.
What is happening is that the optimizer is smart. It knows that if a query is not in cache, it has to do the compile in order to show you an estimated plan. However, if the plan is in cache, it can just retrieve that plan from cache and show that to you instead of "wasting" time compiling a new one. That does mean, in this case, because we forced a plan, we're seeing that plan instead. Now, if we disabled plan forcing and put the other plan into cache by executing the procedure with the other parameter value, you'd see that second plan as well, just no evidence of plan forcing since it would be turned off.
Conclusion
What we're seeing here is not an artifact of plan forcing. We're seeing an artifact of how estimated plans are generated. If the plan is already in cache, it doesn't generate a new one but uses the one that is there. This is another example of how you can see differences between estimated and actual plans.
Published at DZone with permission of Grant Fritchey, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments