Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Precisely govern an entire explain plan
Hello,
Is there a way to tell the optimizer to precisely follow the exact
plan & access paths you want ? You can't specify a hint to
join a result set to a table, then the result set this join will
yield with another table etc., so how can you deal with this ?
If I have
SELECT...
FROM tab1, tab2, tab3, tab4
WHERE tab1.id = tab3.id AND tab3.id = tab2.id AND tab2.id = tab4.id
How could I force the optimizer to first join TAB1 and TAB3 with a nested loop, then join this result to TAB2 using a hash etc etc. ??
Thanks so much, and regards.
Spendius
Received on Thu Dec 01 2005 - 07:03:11 CST
![]() |
![]() |