Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

Why does Oracle performance go bad after a migration?

Oracle Tips by Burleson Consulting
Don Burleson

A common complain for those migrating from Oracle8 or Oracle8i to Oracle10g is that the performance gets WORSE!  By the way, I recommend that you migrate directly to Oracle10g because the automated statistics collection and optimization can help a lot, especially if you are not familiar with Oracle tuning.

So, what do you do if you find that your well-optimized database performs poorly after a migration to a new release?  In my experience it?s most likely sub-optimal SQL execution, and rarely, sub-optimal PL/SQL.  I follow these steps:

1 ? Compare an execution plan from before the migration to a post-migration execution plan

2 ? Ensure that you have re-analyzed your schema using the dbms_stats utility

3 ? Check the Oracle docs for recommended changes to init.ora parameters.

 

Here are details:

1 - Find a super bad-performing SQL and dive-in to see exactly why the SQL is executing in a sub-optimal fashion.  Use the "set autotrace traceonly explain" command in SQL<*Plus, get the execution plan, and compare the execution plan to the same SQL in your old database.  For details on evaluating execution plans, see this article:

   http://www.dba-oracle.com/art_orafaq_oracle_sql_tune_table_scan.htm

2 - Make sure to re-analyze your schema using dbms_stats.  High-quality metadata can make all the difference.  Read this:

    http://www.dba-oracle.com/art_otn_cbo_p2.htm 

3 - Try re-setting Oracle initialization parameters: 

http://www.dba-oracle.com/art_builder_sql_parm.htm

  • optimizer_mode ? If you have an OLTP database, try first_rows.  Also, if your old optimizer_mode was ?choose? you will need to pick a new one in Oracle10g, usually all_rows or first_rows (sometimes first_rows_100 too).
     
  • optimizer_index_cost_adj = 25 ? This adjusts the optimizer to favor index access
     
  • optimizer_index_caching = set to percentage of indexes that are buffered according to x$bh buffer data.  A script to give you the best initial setting can be downloaded here:

             http://www.rampant-books.com/book_1002_oracle_tuning_definitive_reference_2nd_ed.htm

Remember, the all_rows optimizer mode is designed to minimize computing resources and it favors full-table scans.  Index access (first_rows) adds additional I/O overhead, but they return rows faster, back to the originating query:

Oracle full-table scan Illustration

Oracle Index access illustration

 
Get the Complete
Oracle SQL Tuning Information 

The landmark book "Advanced Oracle SQL Tuning  The Definitive Reference"  is filled with valuable information on Oracle SQL Tuning. This book includes scripts and tools to hypercharge Oracle 11g performance and you can buy it for 30% off directly from the publisher.


 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster
 
 
 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.