Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Full table scan despite appropriate indexes
Finally I see some progress!!!
Without hint: (explain plan use FTS)
Predicate Information (identified by operation id):
PLAN_TABLE_OUTPUT
2 - access("T2"."MONTH_SK"="T1"."DATE_SK") 4 - access("T1"."YEAR_MONTH_CT"=200312)
With hint: (picked up the index)
5 - access("T1"."YEAR_MONTH_CT"=200312) 6 - access("T5"."MONTH_SK"="T1"."DATE_SK")
Is it the order that matters here? What can I do avoid using hints? Why the optimizer is not picking the index when there is no hint? Received on Thu Feb 08 2007 - 10:57:04 CST
![]() |
![]() |