Performance Tuning SQL - How? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:26:47Zhttp://stackoverflow.com/feeds/question/463639http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/463639/performance-tuning-sql-how5Performance Tuning SQL - How?Dems2009-01-21T00:08:52Z2009-01-21T00:26:18Z
<p><strong>How does one performance tune a SQL Query?</strong> </p>
<ul>
<li>What tricks/tools/concepts can be used to change the performance of a SQL Query? </li>
<li>How can the benefits be Quantified? </li>
<li>What does one need to be careful of?</li>
</ul>
<p><br>
<strong>What tricks/tools/concepts can be used to change the performance of a SQL Query?</strong></p>
<ul>
<li>Using Indexes? How do they work in practice?</li>
<li>Normalised vs Denormalised Data? What are the performance vs design/mainenance trade offs? </li>
<li>Pre-processed intermediate tables? Created with triggers or batch jobs? </li>
<li>Restructure the query to use Temp Tables, Sub Queries, etc? </li>
<li>Seperate complex queies into multiples and UNION the results?</li>
<li>Anything else?</li>
</ul>
<p><br>
<strong>How can performance be Quantified?</strong> </p>
<ul>
<li>Reads? </li>
<li>CPU Time? </li>
<li>"% Query Cost" when different versions run together? </li>
<li>Anything else?</li>
</ul>
<p><br>
<strong>What does one need to be careful of?</strong> </p>
<ul>
<li>Time to generate Execution Plans? (Stored Procs vs Inline Queries) </li>
<li>Stored Procs being forced to recompile </li>
<li>Testing on small data sets (Do the queries scale linearly, or square law, etc?) </li>
<li>Results of previous runs being cached </li>
<li>Optimising "normal case", but harming "worst case" </li>
<li>What is "Parameter Sniffing"?</li>
<li>Anything else?</li>
</ul>
<p><br>
<em>Note to moderators:</em><br />
This is a huge question, should I have split it up in to multiple questions?</p>
<p><em>Note To Responders:</em><br />
Because this is a huge question please reference other questions/answers/articles rather than writing lengthy explanations.</p>
http://stackoverflow.com/questions/463639/performance-tuning-sql-how/463645#4636453Answer by Brent Ozar for Performance Tuning SQL - How?Brent Ozar2009-01-21T00:12:00Z2009-01-21T00:12:00Z<p>I really like the book "Professional SQL Server 2005 Performance Tuning" to answer this. It's Wiley/Wrox, and no, I'm not an author, heh. But it explains a lot of the things you ask for here, plus hardware issues.</p>
<p>But yes, this question is way, way beyond the scope of something that can be answered in a comment box like this one.</p>
http://stackoverflow.com/questions/463639/performance-tuning-sql-how/463661#4636611Answer by SQLMenace for Performance Tuning SQL - How?SQLMenace2009-01-21T00:15:52Z2009-01-21T00:15:52Z<p>Writing sargable queries is one of the things needed, if you don't write sargable queries then the optimizer can't take advantage of the indexes. Here is one example <a href="http://blogs.lessthandot.com/index.php/DataMgmt/DataDesign/only-in-a-database-can-you-get-1000-impr" rel="nofollow">Only In A Database Can You Get 1000% + Improvement By Changing A Few Lines Of Code</a> this query went from over 24 hours to 36 seconds</p>
http://stackoverflow.com/questions/463639/performance-tuning-sql-how/463688#4636881Answer by SQLMenace for Performance Tuning SQL - How?SQLMenace2009-01-21T00:26:18Z2009-01-21T00:26:18Z<p>Of course you also need to know the difference between these 3 join </p>
<p>loop join,
hash join,
merge join</p>
<p>see here: <a href="http://msdn.microsoft.com/en-us/library/ms173815.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms173815.aspx</a></p>