Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Costs in explain plan

RE: Costs in explain plan

From: Toepke, Kevin M <ktoepke_at_trilegiant.com>
Date: Wed, 12 Dec 2001 06:27:41 -0800
Message-ID: <F001.003DAAD4.20011212050027@fatcity.com>

Also, even if 2 queries have an identical cost _AND_ explain plan that does not mean they'll execute in the same amount of time! (At least with Oracle 8.1.6, 8.1.6 & 8.1.7 on Sun Solaris)

Yes, I have tested this and No I can't explain it.

The specific situation was somthing like this: Original:

        SELECT id
        FROM   credit_card
        WHERE  credit_card_number = :ccn;
Modified:
        SELECT /*+ FIRST_ROWS */
        FROM   credit_card
        WHERE  credit_card_number = :ccn;

The hinted query ran about 10-15% faster (over thousands of executions) than the unhinted version. The credit_card table was hash partitioned on credit_card_number.

Caver

-----Original Message-----
Sent: Wednesday, December 12, 2001 4:55 AM To: Multiple recipients of list ORACLE-L

For the SAME query, the costs can be compared - but remember that the cost is basically just a mathematical algorithm that pops out a number at the end. It is somewhat analagous to the number of IO's expected to satisfy the query, but of course

  1. Oracle can get it wrong occasionally
  2. its only as good as your optimizer stats
  3. By default, Oracle tends to undercost full table scans (since it treats a single block IO the same as a multiblock IO)

hth
connor


Connor McDonald
http://www.oracledba.co.uk (mirrored at http://www.oradba.freeserve.co.uk)

"Some days you're the pigeon, some days you're the statue"



Do You Yahoo!?
Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: =?iso-8859-1?q?Connor=20McDonald?=
  INET: hamcdc_at_yahoo.co.uk

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Toepke, Kevin M
  INET: ktoepke_at_trilegiant.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Wed Dec 12 2001 - 08:27:41 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US