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

Home -> Community -> Mailing Lists -> Oracle-L -> Forcing CBO to look at partition ...

Forcing CBO to look at partition ...

From: laura pena <lizzpenaorclgrp_at_yahoo.com>
Date: Thu, 29 May 2003 14:10:15 -0800
Message-ID: <F001.005A65CF.20030529141015@fatcity.com>


Hey I currently do not have stats loaded and have a composite partition table corralated with a legacy table. I am wondering if I can force the CBO to use a specific partitions index and hash via a hint.  

Is this possible? (partitioned by calldate and hashed by customerinfoId)  

Many Thanks,
-Lizz
 

Here is my sql:
select * from customerinfo
 where calldate between

    TO_DATE('2003-05-21 00:00:00','YYYY-MM-DD HH24:MI:SS')+ 10/24     and TO_DATE('2003-05-22 00:00:00','YYYY-MM-DD HH24:MI:SS')+ 10/24     and Spare7 = '20'
    and verified = 'Y'
    and account_no ='864239913' and call_id <> '0'     or call_id in (

     select call_id from voicelog.audit_table
     WHERE audit_table.event_type = 3
       and event_id between
          TO_DATE('2003-05-21 00:00:00','YYYY-MM-DD HH24:MI:SS')+ 10/24
          and TO_DATE('2003-05-22 00:00:00','YYYY-MM-DD HH24:MI:SS')+ 10/24
       and call_id in (
           select call_id from customerinfo
             where  calldate between TO_DATE('2003-05-21 00:00:00','YYYY-MM-
H24:MI:SS')
              and TO_DATE('2003-05-22 00:00:00','YYYY-MM-DD HH24:MI:SS')
              and Spare7 = '20'
              and verified = 'Y' and account_no ='864239913'
              and call_id <> '0'
           )
     )

 /

Do you Yahoo!?
Free online calendar with sync to Outlook(TM).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: laura pena
  INET: lizzpenaorclgrp_at_yahoo.com
Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services

---------------------------------------------------------------------
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 Thu May 29 2003 - 17:10:15 CDT

Original text of this message

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