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

Thread: To sreddy about Nested loop/Hash Join

  1. #1
    Join Date
    Sep 2001
    Location
    NJ, USA
    Posts
    1,287
    Fist method (with garantee of switch to NESTED LOOP)

    alter session set hash_join_enable=false;
    select ....
    ...
    /
    alter session set hash_join_enable=true;
    Plus try to increase parametes:

    OPTIMIZER_INDEX_CACHING ~ 70..90
    OPTIMIZER_INDEX_COST_ADJ ~ 200..500

    Second method (not garantee of switch to NESTED LOOP)

    select /*+ first_rows */
    ...

  2. #2
    Join Date
    Feb 2000
    Location
    Washington DC
    Posts
    1,843
    Thanks a lot. I did delete thread cuz, there was someother issue with it. Using NL hint helped me to force Nested Loops but, performance is gone worst than before (when it was using HASH_JOIN).
    Reddy,Sam

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