Need to speed up this query in SQL Server - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:58:27Z http://stackoverflow.com/feeds/question/354008 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server 0 Need to speed up this query in SQL Server Organiccat 2008-12-09T19:54:27Z 2009-12-21T07:36:10Z <pre><code>SELECT pe.prodtree_element_id prodID, pe.prodtree_element_name_s, li.line_name, av2.value FROM prodtree_element pe LEFT JOIN prodtree_link pl ON pe.prodtree_element_id = pl.to_prodtree_node_id LEFT JOIN line li ON pe.line_code = li.line_code INNER JOIN attribute_values av ON av.attribute_definition_id = #statusCode# LEFT JOIN attribute_values av2 ON pe.prodtree_element_id = av.prodtree_element_id WHERE pe.prodtree_element_func_type &lt;&gt; 'WIZARD' AND pe.prodtree_element_topo_type = 'NODE' </code></pre> <p>"#statusCode#" is a static id that matches an id in the attribute definition table (let's say 22 for the sake of argument). The problem is, the query has some massive trouble finishing in any sane amount of time. The bigger problem is, I kinda need it to finish earlier, but the number of records is enormous that it has to draw back (around 30-50,000). I need data from multiple tables, which is where it starts to slow down. This is just a piece of what I need, I also need an entire other tables worth of data matching the current "prodtree_elment_id".</p> <p>I'm using ColdFusion but even running the query directly in SQL Server 2005 creates the 15-30+ minute wait for this query (if it even finishes). Is there any conceivable way to speed up this query to take at most 5 minutes or less?</p> http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server/354028#354028 0 Answer by StingyJack for Need to speed up this query in SQL Server StingyJack 2008-12-09T20:01:13Z 2008-12-09T20:01:13Z <p>Without knowing the DDL its very hard to test. 30-50K rows should still take only a few seconds. </p> <p>Try switching the where clause ordering. You should probably have this implemented</p> <pre><code> INNER JOIN attribute_values av ON av.attribute_definition_id = #statusCode# </code></pre> <p>in the where clause. </p> http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server/354040#354040 0 Answer by Jennifer for Need to speed up this query in SQL Server Jennifer 2008-12-09T20:03:57Z 2008-12-09T20:03:57Z <p>First thing I would suggest is that you run it through the sql optimizer utility in enterprise manager providing you have that installed. It generally suggests indexes and things like that which could have a positive impact on the query speed.</p> <p>Other things to consider would be splitting up the query. From initial glances it looks like you are reading all product elements which have a particular attribute matching the value you give (or something like that). I would suggest maybe :</p> <pre><code>select * from [bigLongjoin to producttree_element] where prodtree_element_id in( select prodtree_element_id from attribute_values where attribute_definition_id = #statusCode#) </code></pre> <p>Running it in enterprise manager with the query plan displayed might also show you where the bottle necks are</p> http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server/354048#354048 8 Answer by gbn for Need to speed up this query in SQL Server gbn 2008-12-09T20:05:59Z 2008-12-09T20:05:59Z <pre><code>INNER JOIN attribute_values av ON av.attribute_definition_id = #statusCode# LEFT JOIN attribute_values av2 ON pe.prodtree_element_id = av.prodtree_element_id </code></pre> <p>This is the problem. There is a cross join between pe and av, followed by an outer join onto the cross join. You're lucky it only takes 30 mins :-)</p> <p>I think you want this:</p> <pre><code>SELECT pe.prodtree_element_id prodID, pe.prodtree_element_name_s, li.line_name, av2.value FROM prodtree_element pe LEFT JOIN prodtree_link pl ON pe.prodtree_element_id = pl.to_prodtree_node_id LEFT JOIN line li ON pe.line_code = li.line_code --replacement LEFT JOIN attribute_values av ON pe.prodtree_element_id = av.prodtree_element_id AND av.attribute_definition_id = #statusCode# --end replacement WHERE pe.prodtree_element_func_type &lt;&gt; 'WIZARD' AND pe.prodtree_element_topo_type = 'NODE' </code></pre> http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server/354049#354049 0 Answer by Joshua Hudson for Need to speed up this query in SQL Server Joshua Hudson 2008-12-09T20:06:29Z 2008-12-09T20:06:29Z <p>You can search millions of records in a few seconds with good optimization. Though StingyJack is right in that without knowing the DDL, optimization of any query is tough.</p> <p>Things to do though when optimizing a query though is look the execution plan. Nested loops and the like are bad. Also make sure you are fully indexed as well. You mention nothing of the indexes of the tables in question. Without indexes 30 - 50k rows could take a while with that many joins.</p> http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server/354051#354051 0 Answer by Oscar Cabrero for Need to speed up this query in SQL Server Oscar Cabrero 2008-12-09T20:07:20Z 2008-12-09T20:07:20Z <p>make sure all your IDs are Indexes also if you can map the following: </p> <pre><code>pe.prodtree_element_func_type &lt;&gt; 'WIZARD' AND pe.prodtree_element_topo_type = 'NODE' </code></pre> <p>to be something like </p> <pre><code>pe.prodtree_element_func_type_ID &lt;&gt; 1 AND pe.prodtree_element_topo_type_ID = 2 </code></pre> <p>in order to reduce the String comparisons that takes more time to complete</p> http://stackoverflow.com/questions/354008/need-to-speed-up-this-query-in-sql-server/354074#354074 0 Answer by Will Rickards for Need to speed up this query in SQL Server Will Rickards 2008-12-09T20:15:44Z 2008-12-09T20:15:44Z <pre><code>SELECT pe.prodtree_element_id prodID, pe.prodtree_element_name_s, li.line_name, av2.value FROM prodtree_element pe LEFT JOIN prodtree_link pl ON (pe.prodtree_element_id = pl.to_prodtree_node_id) LEFT JOIN line li ON (pe.line_code = li.line_code) LEFT JOIN attribute_values av2 ON (pe.prodtree_element_id IN (SELECT av.prodtree_element_id FROM attribute_values av WHERE av.attribute_definition_id = #statusCode#)) WHERE pe.prodtree_element_func_type &lt;&gt; 'WIZARD' AND pe.prodtree_element_topo_type = 'NODE' </code></pre> <p>gbn nailed it I think. Even though you restrict the INNER JOIN to attribute_values to a specific value, it is still not joined at all to your primary table or its relationships. So even if you are getting results from the query, my guess is that there are too many.</p> <p>Depending on what you intended and how your data is in the attribute_values table either his query or mine would probably be faster.</p>