Why does the SqlServer optimizer get so confused with parameters? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T17:54:44Z http://stackoverflow.com/feeds/question/414336 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters 4 Why does the SqlServer optimizer get so confused with parameters? Eric Z Beard 2009-01-05T20:09:49Z 2009-01-06T16:26:19Z <p>I know this has something to do with parameter sniffing, but I'm just perplexed at how something like the following example is even possible with a piece of technology that does so many complex things well.</p> <p>Many of us have run into stored procedures that intermittently run several of orders of magnitude slower than usual, and then if you copy out the sql from the procedure and use the same parameter values in a separate query window, it runs as fast as usual.</p> <p>I just fixed a procedure like that by converting this:</p> <pre><code>alter procedure p_MyProc ( @param1 int ) as -- do a complex query with @param1 </code></pre> <p>to this:</p> <pre><code>alter procedure p_MyProc ( @param1 int ) as declare @param1Copy int; set @param1Copy = @param1; -- Do the query using @param1Copy </code></pre> <p>It went from running in over a minute back down to under one second, like it usually runs. This behavior seems totally random. For 9 out of 10 @param1 inputs, the query is fast, regardless of how much data it ends up needing to crunch, or how big the result set it. But for that 1 out of 10, it just gets lost. And the fix is to replace an int with the same int in the query?</p> <p>It makes no sense.</p> <p>[Edit]</p> <p>@gbn linked to this question, which details a similar problem:</p> <p><a href="http://stackoverflow.com/questions/379007/known-issue-sql-server-2005-stored-procedure-fails-to-complete-with-a-parameter">http://stackoverflow.com/questions/379007/known-issue-sql-server-2005-stored-procedure-fails-to-complete-with-a-parameter</a></p> <p>I hesitate to cry "Bug!" because that's so often a cop-out, but this really does seem like a bug to me. When I run the two versions of my stored procedure with the same input, I see identical query plans. The only difference is that the original takes more than a minute to run, and the version with the goofy parameter copying runs instantly.</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/414360#414360 1 Answer by Mehrdad Afshari for Why does the SqlServer optimizer get so confused with parameters? Mehrdad Afshari 2009-01-05T20:19:26Z 2009-01-05T20:19:26Z <p>It's probably caused by the fact that SQL Server compiles stored procedures and <b>caches</b> execution plans for them and the cached execution plan is probably unsuitable for this new set of parameters. You can try <code>WITH RECOMPILE</code> option to see if it's the cause.</p> <pre><code>EXECUTE MyProcedure [parameters] WITH RECOMPILE </code></pre> <p><code>WITH RECOMPILE</code> option will force SQL Server to ignore the cached plan.</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/414368#414368 1 Answer by gbn for Why does the SqlServer optimizer get so confused with parameters? gbn 2009-01-05T20:23:01Z 2009-01-06T16:26:19Z <p>The 1 in 10 gives the wrong plan that is cached.</p> <p>RECOMPILE adds an overhead, masking allows each parameter to be evaluated on it's own merits (very simply).</p> <p>By wrong plan, what if the 1 in 10 generates an scan on index 1 but the other 9 produce a seek on index 2? eg, the 1 in 10 is, say, 50% of the rows?</p> <p>Edit: other questions</p> <p><a href="http://stackoverflow.com/questions/379007/known-issue-sql-server-2005-stored-procedure-fails-to-complete-with-a-parameter">http://stackoverflow.com/questions/379007/known-issue-sql-server-2005-stored-procedure-fails-to-complete-with-a-parameter</a></p> <p><a href="http://stackoverflow.com/questions/272726/stored-procedure-failing-on-a-specific-user">http://stackoverflow.com/questions/272726/stored-procedure-failing-on-a-specific-user</a></p> <p>Edit 2: Recompile does not work because the parameters are sniffed at compile time. From other links (pasted in):</p> <p>I think this <a href="http://www.microsoft.com/technet/prodtechnol/sql/2005/recomp.mspx#E6TAE" rel="nofollow">article</a> explains...</p> <pre><code>...parameter values are sniffed during compilation or recompilation... </code></pre> <p>Finally (edit 2): Parameter sniffing was probably a good idea at the time and probably works well mostly. We use it across the board for any parameter that will end up in a WHERE clause. We don't need to use it because we know that only a few (more complex eg reports or many parameters) could cause issues but we use it for consistency.</p> <p>And the fact that it will come back and bite us when the users complain and we should have used masking...</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/414380#414380 0 Answer by Josh for Why does the SqlServer optimizer get so confused with parameters? Josh 2009-01-05T20:25:51Z 2009-01-05T20:25:51Z <p>As indicated it be a compilation issue. Does this issue still occur if you revert the procedure? One thing you can try if this occurs again to force a recompilation is to use:</p> <p>sp_recompile [ @objname = ] 'object'</p> <p>Right from BOL in regards to @objname parameter:</p> <p>Is the qualified or unqualified name of a stored procedure, trigger, table, or view in the current database. object is nvarchar(776), with no default. If object is the name of a stored procedure or trigger, the stored procedure or trigger will be recompiled the next time that it is run. If object is the name of a table or view, all the stored procedures that reference the table or view will be recompiled the next time they are run.</p> <p>If you drop and recreate the procedure you could cause clients to fail if they try and execute the procedure. You will also need to reapply security settings.</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/414514#414514 0 Answer by le dorfier for Why does the SqlServer optimizer get so confused with parameters? le dorfier 2009-01-05T21:02:01Z 2009-01-05T21:02:01Z <p>Is there any chance that the parameter value being provided is sometimes not int?</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/414584#414584 1 Answer by ocdecio for Why does the SqlServer optimizer get so confused with parameters? ocdecio 2009-01-05T21:27:08Z 2009-01-05T21:27:08Z <p>Could you check on the SQL Profiler how many reads and execution time when it is quick and when it is slow? It could be related to the number of rows fetched depending on the parameter value. It doesn't sound like a cache plan issue.</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/414607#414607 0 Answer by BradC for Why does the SqlServer optimizer get so confused with parameters? BradC 2009-01-05T21:33:45Z 2009-01-05T22:44:29Z <p>It is a problem with plan caching, and it isn't always related to parameters, as it was in your scenario. </p> <p>(Parameter Sniffing problems occur when a proc is called with unusual parameters the FIRST time it runs, and so the cached plan works great for those odd values, but lousy for most other times the proc is called.)</p> <p>We had a similar situation when the app team deleted all old records from a highly-used log table on a production server. Removing records improves performance, right? Nope, performance immediately tanked. </p> <p>Turns out that a frequently-used stored proc was recompiled right when the table was nearly empty, and it cached an extremely poor execution plan ("hey, there's only 50 records here, might as well do a Table Scan!"). Would have happened no matter what the initial parameters.</p> <p>Our fix was to force a recompile with sp_recompile.</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/414658#414658 0 Answer by le dorfier for Why does the SqlServer optimizer get so confused with parameters? le dorfier 2009-01-05T21:54:41Z 2009-01-05T22:00:31Z <p>Is every query reference to the parameter comparing it with int values, without functions and without casting?</p> <p>Can you increase the specificity of any expressions using the parameter to make the use of multifield indexes more likely?</p> http://stackoverflow.com/questions/414336/why-does-the-sqlserver-optimizer-get-so-confused-with-parameters/415469#415469 2 Answer by Cade Roux for Why does the SqlServer optimizer get so confused with parameters? Cade Roux 2009-01-06T04:31:58Z 2009-01-06T04:37:46Z <p>I have had this problem repeatedly on moving my code from a test server to production - <a href="http://stackoverflow.com/questions/379007/known-issue-sql-server-2005-stored-procedure-fails-to-complete-with-a-parameter">on two different builds of SQL Server 2005</a>. I think there are some big problems with the parameter sniffing in some builds of SQL Server 2005. I never had this problem on the dev server, or on two local developer edition boxes. I've never seen it it be such a big problem on SQL Server 2000 or any version going back to 6.5 either.</p> <p>The cases where I found it, the only workaround was to use parameter masking, and I'm still hoping the DBAs will patch up the production server to SP3 so it will maybe go away. Things which did not work:</p> <ul> <li>using the WITH RECOMPILE hint on EXEC or in the SP itself.</li> <li>dropping and recreating the SP</li> <li>using sp_recompile</li> </ul> <p>Note that in the case I was working on, the data was not changing since an earlier invocation - I had simply scripted the code onto the production box which already had data loaded. All the invocations came with no changes to the data since before the SPs existed.</p> <p>Oh, and if SQL Server can't handle this without masking, they need to add a parameter modifier NOSNIFF or something. What happens if you mask all your parameters, so you have @Something_parm and @Something_var and someone changes the code to use the wrong one and all of a sudden you have a sniffing problem again? Plus you are polluting the namespace within the SP. All these SPs I am "fixing" drive me nuts because I know they are going to be a maintenance nightmare for the less experienced satff I will be handing this project off to one day.</p>