How to avoid full table scan?
I have a query with 4 tables in which two tables are
XLA_AE_HEADERS (AE_HEADER_ID,APPLICATION_ID)--->unique index
XLA_AE_LINES (AE_HEADER_ID,EVENT_ID,APPLICATION_ID)--->unique index
. in join these two i have written as
XH.AE_HEADER_ID=XL.AE_HEADER_ID
and XH.APPLICATION_ID=XL.APPLICATION_ ID
but Plan shows full table scan on Lines table.
Any clue to avoid full table scan and improve performance.
regards
Hina