BC remote Oracle DBA - Call (800) 766-1884  
Oracle Consulting Oracle Training Development

Remote DBA

Remote DBA Plans  

Remote DBA Service

Remote DBA RAC

   
Remote DBA Oracle Home
Remote DBA Oracle Training
Remote DBA SQL Tuning Consulting
Remote DBA Oracle Tuning Consulting
Remote DBA Data Warehouse Consulting
Remote DBA Oracle Project Management
Remote DBA Oracle Security Assessment
Remote DBA Unix Consulting
Burleson Books
Burleson Articles
Burleson Web Courses
Burleson Qualifications
Oracle Links
Remote DBA Oracle Monitoring
Remote DBA Support Benefits
Remote DBA Plans & Prices
Our Automation Strategy
What We Monitor
Oracle Apps Support
Print Our Brochure
Contact Us (e-mail)
Oracle Job Opportunities
Oracle Consulting Prices





   

 

 

 

Remote DBA services

Remote DBA Support

Remote DBA RAC

Remote DBA Reasons

Remote Oracle Tuning

Remote DBA Links

Oracle DBA Support

Oracle DBA Forum

Oracle Disaster

Oracle Training

Oracle Tuning

Oracle Training

 Remote DBA SQL Server

Remote MSSQL Consulting

Oracle DBA Hosting

Oracle License Negotiation

 

 


 

 

 

 

 
 

Oracle SQL Join Cardinality

Oracle Tips by Burleson Consulting

How is join cardinality estimated?

In the absence of column histograms, the Oracle CBO must be able to guess on information, and sometimes the guess is wrong.  This is one reason why the ORDERED hint is one of the most popular SQL tuning hints, because using the ORDERED hint allows the DBA to specify that the tables be joined together in the same order that they appear in the FROM clause, like this:

 

select /+ ORDERED */
   student_name
from
   student
natural join
   course
natural join
   professor
where
   professor = ‘jones’
and
   course = ‘anthropology 610’;

 

If the values for the PROFESSOR and COURSE table columns are not skewed, it is unlikely that the 10g automatic statistics would have created histograms buckets in the dba_histograms view for these columns.

The Oracle CBO needs to be able to accurately estimate the final number of rows returned by each step of the query and then use schema metadata from running dbms_stats to choose the table join order that results in the least amount of baggage, in the form of intermediate rows, from each of the table join operations. 

This is a daunting task.  When an SQL query has a complex WHERE clause, it can be very difficult to estimate the size of the intermediate result sets, especially when the WHERE clause transforms column values with mathematical functions.  Oracle has made a commitment to making the CBO infallible, even when incomplete information exists. 

Oracle9i introduced the new dynamic sampling method for gathering run-time schema statistics, and it is now enabled by default in Oracle10g. 

It's well established that histograms are very useful for helping the optimizer choose between a full-scan and index-scan, and we also see evidence that histograms help Oracle figure out inter-table join cardinality (the amount of "baggage" that Oracle must carry between table joins).  The presence of histograms helps the CBO determine the optimal table join order.

 

Oracle expert David Aldridge just published an outstand treatise titled "Histograms for join predicates" where he does an outstanding job explaining the problem and how to use histograms as a solution.  The thrust of the argument is that histograms will help detect "skew" in table join columns (STATE_NAME) when using synthetic keys (STATE#).  Aldridge shares his conclusions:

To sum up, here are the solutions I thought of:

  1. Partition or subpartition the fact table on STATE#. (preferred option)
  2. Create a summary table with partitioning or subpartitoning on STATE#. (uses most space and slows data load, but very flexible and powerful)
  3. Create a function-based index on fact to perform the lookup, and query that value instead. (a bit flaky, but it works without major system impact)
  4. Rebuild the fact table based on the STATE_NAME instead. (still limited in multi-level hierarchies)

 

SEE CODE DEPOT FOR FULL SCRIPTS


This is an excerpt from my latest book "Oracle Tuning: The Definitive Reference". 

You can buy it direct from the publisher for 50%-off and get instant access to the code depot of Oracle tuning scripts:

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

 


Expert Remote DBA

BC is America's oldest and largest Remote DBA Oracle support provider.  Get real Remote DBA experts, call
BC Remote DBA today.

 

 

Remote DBA Service
 

Oracle Tuning Book

 

Advance SQL Tuning Book 

BC Oracle support

Oracle books by Rampant

Oracle monitoring software

 

 

 

 

 

 

BC Remote Oracle Support

Remote DBA

Remote DBA Services

Copyright © 1996 -  2013 by Burleson. All rights reserved.

Oracle® is the registered trademark of Oracle Corporation.



Hit Counter