How do I troubleshoot performance problems with an Oracle SQL statement - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:51:45Zhttp://stackoverflow.com/feeds/question/104066http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement2How do I troubleshoot performance problems with an Oracle SQL statementMike McAllister2008-09-19T17:51:09Z2009-04-30T11:56:47Z
<p>I have two insert statements, almost exactly the same, which run in two different schemas on the same Oracle instance. What the insert statement looks like doesn't matter - I'm looking for a troubleshooting strategy here.</p>
<p>Both schemas have 99% the same structure. A few columns have slightly different names, other than that they're the same. The insert statements are almost exactly the same. The explain plan on one gives a cost of 6, the explain plan on the other gives a cost of 7. The tables involved in both sets of insert statements have exactly the same indexes. Statistics have been gathered for both schemas.</p>
<p>One insert statement inserts 12,000 records in 5 seconds.</p>
<p>The other insert statement inserts 25,000 records in 4 minutes 19 seconds.</p>
<p>The number of records being insert is correct. It's the vast disparity in execution times that confuses me. Given that nothing stands out in the explain plan, how would you go about determining what's causing this disparity in runtimes?</p>
<p>(I am using Oracle 10.2.0.4 on a Windows box).</p>
<p><strong>Edit:</strong> The problem ended up being an inefficient query plan, involving a cartesian merge which didn't need to be done. Judicious use of index hints and a hash join hint solved the problem. It now takes 10 seconds. Sql Trace / TKProf gave me the direction, as I it showed me how many seconds each step in the plan took, and how many rows were being generated. Thus TKPROF showed me:-</p>
<pre><code>Rows Row Source Operation
------- ---------------------------------------------------
23690 NESTED LOOPS OUTER (cr=3310466 pr=17 pw=0 time=174881374 us)
23690 NESTED LOOPS (cr=3310464 pr=17 pw=0 time=174478629 us)
2160900 MERGE JOIN CARTESIAN (cr=102 pr=0 pw=0 time=6491451 us)
1470 TABLE ACCESS BY INDEX ROWID TBL1 (cr=57 pr=0 pw=0 time=23978 us)
8820 INDEX RANGE SCAN XIF5TBL1 (cr=16 pr=0 pw=0 time=8859 us)(object id 272041)
2160900 BUFFER SORT (cr=45 pr=0 pw=0 time=4334777 us)
1470 TABLE ACCESS BY INDEX ROWID TBL1 (cr=45 pr=0 pw=0 time=2956 us)
8820 INDEX RANGE SCAN XIF5TBL1 (cr=10 pr=0 pw=0 time=8830 us)(object id 272041)
23690 MAT_VIEW ACCESS BY INDEX ROWID TBL2 (cr=3310362 pr=17 pw=0 time=235116546 us)
96565 INDEX RANGE SCAN XPK_TBL2 (cr=3219374 pr=3 pw=0 time=217869652 us)(object id 272084)
0 TABLE ACCESS BY INDEX ROWID TBL3 (cr=2 pr=0 pw=0 time=293390 us)
0 INDEX RANGE SCAN XIF1TBL3 (cr=2 pr=0 pw=0 time=180345 us)(object id 271983)
</code></pre>
<p>Notice the rows where the operations are MERGE JOIN CARTESIAN and BUFFER SORT. Things that keyed me into looking at this were the number of rows generated (over 2 million!), and the amount of time spent on each operation (compare to other operations).</p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/104103#1041033Answer by EddieAwad for How do I troubleshoot performance problems with an Oracle SQL statementEddieAwad2008-09-19T17:56:40Z2008-09-19T17:56:40Z<p>Use the <a href="http://68.142.116.68/docs/cd/B19306_01/server.102/b14211/sqltrace.htm#i4640" rel="nofollow">SQL Trace facility and TKPROF</a>.</p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/104148#1041481Answer by Lou Franco for How do I troubleshoot performance problems with an Oracle SQL statementLou Franco2008-09-19T18:05:01Z2008-09-19T18:05:01Z<p>The main culprits in insert slow downs are indexes, constraints, and oninsert triggers. Do a test without as many of these as you can remove and see if it's fast. Then introduce them back in and see which one is causing the problem.</p>
<p>I have seen systems where they drop indexes before bulk inserts and rebuild at the end -- and it's faster. </p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/104206#1042061Answer by bentilly for How do I troubleshoot performance problems with an Oracle SQL statementbentilly2008-09-19T18:15:03Z2008-09-19T18:15:03Z<p>The first thing to realize is that, as <a href="http://download.oracle.com/docs/cd/A87860_01/doc/server.817/a76965/c20a_opt.htm#16287" rel="nofollow">the documentation says</a>, the cost you see displayed is relative to one of the query plans. The costs for 2 different explains are <strong>not</strong> comparable. Secondly the costs are based on an internal estimate. As hard as Oracle tries, those estimates are not accurate. Particularly not when the optimizer misbehaves. Your situation suggests that there are two query plans which, according to Oracle, are very close in performance. But which, in fact, perform very differently.</p>
<p>The actual information that you want to look at is the actual explain plan itself. That tells you exactly how Oracle executes that query. It has a lot of technical gobbeldy-gook, but what you really care about is knowing that it works from the most indented part out, and at each step it merges according to one of a small number of rules. That will tell you what Oracle is doing differently in your two instances.</p>
<p>What next? Well there are a variety of strategies to tune bad statements. The first option that I would suggest, if you're in Oracle 10g, is to try their <a href="http://www.oracle-base.com/articles/10g/AutomaticSQLTuning10g.php" rel="nofollow">SQL tuning advisor</a> to see if a more detailed analysis will tell Oracle the error of its ways. It can then store that plan, and you will use the more efficient plan.</p>
<p>If you can't do that, or if that doesn't work, then you need to get into things like providing query hints, manual stored query outlines, and the like. That is a complex topic. This is where it helps to have a real DBA. If you don't, then you'll want to start reading the <a href="http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96533/toc.htm" rel="nofollow">documentation</a>, but be aware that there is a lot to learn. (Oracle also has a SQL tuning class that is, or at least used to be, very good. It isn't cheap though.)</p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/104294#1042940Answer by Dave Costa for How do I troubleshoot performance problems with an Oracle SQL statementDave Costa2008-09-19T18:25:00Z2008-09-19T18:25:00Z<p>I agree with a previous poster that SQL Trace and tkprof are a good place to start. I also highly recommend the book <a href="http://rads.stackoverflow.com/amzn/click/059600527X" rel="nofollow">Optimizing Oracle Performance</a>, which discusses similar tools for tracing execution and analyzing the output.</p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/116209#1162091Answer by AJ for How do I troubleshoot performance problems with an Oracle SQL statementAJ2008-09-22T17:20:07Z2008-09-22T17:20:07Z<p>I've put up my general list of things to check to improve performance as an answer to another question: </p>
<p><a href="http://stackoverflow.com/questions/18783/sql-what-are-your-favorite-performance-tricks#103176">http://stackoverflow.com/questions/18783/sql-what-are-your-favorite-performance-tricks#103176</a></p>
<p>... It might be helpful as a checklist, even though it's not Oracle-specific. </p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/123031#1230310Answer by tc for How do I troubleshoot performance problems with an Oracle SQL statementtc2008-09-23T18:57:49Z2008-09-23T18:57:49Z<p>SQL Trace and tkprof are only good if you have access to theses tools. Most of the large companies that I do work for do not allow developers to access anything under the Oracle unix IDs. </p>
<p>I believe you should be able to determine the problem by first understanding the question that is being asked and by reading the explain plans for each of the queries. Many times I find that the big difference is that there are some tables and indexes that have not been analyzed.</p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/123100#1231000Answer by thoroughly for How do I troubleshoot performance problems with an Oracle SQL statementthoroughly2008-09-23T19:07:45Z2008-09-23T19:07:45Z<p>Another good reference that presents a general technique for query tuning is the book <a href="http://rads.stackoverflow.com/amzn/click/0596005733" rel="nofollow">SQL Tuning</a> by Dan Tow. </p>
http://stackoverflow.com/questions/104066/how-do-i-troubleshoot-performance-problems-with-an-oracle-sql-statement/806541#8065410Answer by vinod kambli for How do I troubleshoot performance problems with an Oracle SQL statementvinod kambli2009-04-30T11:56:47Z2009-04-30T11:56:47Z<p><strong><em>analyzing the oI also highly recommend the book Optimizing Oracle Performance, which discusses similar tools for tracing execution and utput.</em></strong></p>