Parameter Sniffing (or Spoofing) in SQL Server - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:31:18Z http://stackoverflow.com/feeds/question/211355 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server 6 Parameter Sniffing (or Spoofing) in SQL Server Unsliced 2008-10-17T08:00:32Z 2008-10-22T09:27:19Z <p>A while ago I had a query that I ran quite a lot for one of my users. It was still being evolved and tweaked but eventually it stablised and ran quite quickly, so we created a stored procedure from it. </p> <p>So far, so normal. </p> <p>The stored procedure, though, was dog slow. No material difference between the query and the proc, but the speed change was massive. </p> <p>[Background, we're running SQL Server 2005.]</p> <p>A friendly local DBA (who no longer works here) took one look at the stored procedure and said "parameter spoofing!" (<strong>Edit:</strong> although it seems that it is possibly also known as 'parameter sniffing', which might explain the paucity of Google hits when I tried to search it out.) </p> <p>We abstracted some of the stored procedure to a second one, wrapped the call to this new inner proc into the pre-existing outer one, called the outer one and, hey presto, it was as quick as the original query. </p> <p>So, what gives? Can someone explain parameter spoofing? </p> <p>Bonus credit for </p> <ul> <li>highlighting how to avoid it </li> <li>suggesting how to recognise possible cause</li> <li>discuss alternative strategies, e.g. stats, indices, keys, for mitigating the situation</li> </ul> http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server/211847#211847 6 Answer by nkav for Parameter Sniffing (or Spoofing) in SQL Server nkav 2008-10-17T11:51:10Z 2008-10-17T11:51:10Z <p>Yes, i think you mean parameter sniffing, which is a technique the SQL Server optimizer uses to try &amp; figure out parameter values/ranges so it can choose the best execution plan for your query. In some instances SQL Server does a poor job at parameter sniffing &amp; doesnt pick the best execution plan for the query. <br> I believe this blog article <a href="http://blogs.msdn.com/queryoptteam/archive/2006/03/31/565991.aspx" rel="nofollow">http://blogs.msdn.com/queryoptteam/archive/2006/03/31/565991.aspx</a> has a good explanation. <br> It seems that the DBA in your example choose option #4 to move the query to another sproc to a seperate procedural context. <br> You could have also used the <em>with recomplie</em> on the original sproc or used the <em>optimize for</em> option on the parameter.</p> http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server/215785#215785 2 Answer by 6eorge Jetson for Parameter Sniffing (or Spoofing) in SQL Server 6eorge Jetson 2008-10-19T00:38:02Z 2008-10-19T00:38:02Z <p>A simple way to speed that up is to reassign the input parameters to local parameters in the very beginning of the sproc, e.g.</p> <p><code> CREATE PROCEDURE uspParameterSniffingAvoidance <br/>&nbsp; &nbsp; @SniffedFormalParameter int <br/>AS <br/>BEGIN</p> <p><br/>&nbsp; &nbsp; DECLARE @SniffAvoidingLocalParameter int <br/>&nbsp; &nbsp; SET &nbsp; &nbsp; @SniffAvoidingLocalParameter = @SniffedFormalParameter <br/> <br/>&nbsp; &nbsp; --Work w/ @SniffAvoidingLocalParameter in sproc body <br/>&nbsp; &nbsp; -- ...</p> <p></code></p> http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server/215861#215861 6 Answer by Brent Ozar for Parameter Sniffing (or Spoofing) in SQL Server Brent Ozar 2008-10-19T01:36:33Z 2008-10-19T01:36:33Z <p>FYI - you need to be aware of something else when you're working with SQL 2005 and stored procs with parameters.</p> <p>SQL Server will compile the stored proc's execution plan with the first parameter that's used. So if you run this:</p> <p>usp_QueryMyDataByState "Rhode Island"</p> <p>The execution plan will work best with a small state's data. But if someone turns around and runs:</p> <p>usp_QueryMyDataByState "Texas"</p> <p>The execution plan designed for Rhode-Island-sized data may not be as efficient with Texas-sized data. This can produce surprising results when the server is restarted, because the newly generated execution plan will be targeted at whatever parameter is used first - not necessarily the best one. The plan won't be recompiled until there's a big reason to do it, like if statistics are rebuilt.</p> <p>This is where query plans come in, and SQL Server 2008 offers a lot of new features that help DBAs pin a particular query plan in place long-term no matter what parameters get called first.</p> <p>My concern is that when you rebuilt your stored proc, you forced the execution plan to recompile. You called it with your favorite parameter, and then of course it was fast - but the problem may not have been the stored proc. It might have been that the stored proc was recompiled at some point with an unusual set of parameters and thus, an inefficient query plan. You might not have fixed anything, and you might face the same problem the next time the server restarts or the query plan gets recompiled.</p> http://stackoverflow.com/questions/211355/parameter-sniffing-or-spoofing-in-sql-server/225015#225015 1 Answer by Jan for Parameter Sniffing (or Spoofing) in SQL Server Jan 2008-10-22T09:27:19Z 2008-10-22T09:27:19Z <p>Parameter sniffing is a technique, Sql Server uses to optimze the query execution plan for a stored procedure. When you first call the SP, Sql Server looks at the given parameter values of your call and decides which indices to use based on the parameter values.</p> <p>So when the first call contains not very typical parameters, Sql Server might select and store a suboptimal execution plan in regard to the following calls of the sp.</p> <p>You can work around this by either </p> <ul> <li>using WITH RECOMPILE</li> <li>copying the parameter values to local variables inside the sp and using the locals in your queries.</li> </ul> <p>I even heard that its better to not use procs at all but send your queries directly to the server. I recently came across the same problem where i have no real solution yet. For some queries the copy to local vars helps getting back to the right execution plan, for some queries performance degrades with local vars.</p> <p>I still have to do more research on how Sql Server caches and reusese (suboptimal) execution plans.</p>