DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: Is rule based optimizer aged out ?

  1. #1
    Join Date
    Mar 2003
    Location
    Singapore
    Posts
    45

    Is rule based optimizer aged out ?

    Hi,

    Is rule based optimizer no longer exists in 10G, if this is true, how about the some 3rd party applications which were forced to use rule based optimizer at the statements level?.

    Has any one gone though these kind of issues after the database was migrated to 10G from lower versions?.

    Please advice.

    Thanks,

  2. #2
    Join Date
    Aug 2002
    Location
    Colorado Springs
    Posts
    5,253
    Third-party vendors would specify the compatibility of their products with different Oracle versions -- if they "support" 10g then you culd upgrade to it.

    I'm not sure that 10g has no RBO, I believe that it's just officially not supported.
    David Aldridge,
    "The Oracle Sponge"

    Senior Manager, Business Intelligence Development
    XM Satellite Radio
    Washington, DC

    Oracle ACE

  3. #3
    Join Date
    Mar 2002
    Location
    Mesa, Arizona
    Posts
    1,204
    in 10.1.0.3

    alter session set optimizer_goal=rule;
    returns
    ORA-01986: OPTIMIZER_GOAL is obsolete

    however...

    PROJECTS table
    last analyzed 03/13/2005 05:43:40

    select count(project_id) from projects
    SORT AGGREGATE
    INDEX FULL SCAN PROJECTS_PK

    select /*+ rule */ count(project_id) from projects
    SORT AGGREGATE
    TABLE ACCESS FULL PROJECTS

    select /*+ index(projects_pk) */ count(project_id) from projects
    SORT AGGREGATE
    INDEX FULL SCAN PROJECTS_PK
    "I do not fear computers. I fear the lack of them." Isaac Asimov
    Oracle Scirpts DBA's need

  4. #4
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    thats because it is optimizer_mode now

  5. #5
    Join Date
    Mar 2002
    Location
    Mesa, Arizona
    Posts
    1,204
    Word.
    "I do not fear computers. I fear the lack of them." Isaac Asimov
    Oracle Scirpts DBA's need

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width