Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Index
Hello,
I have a table with 5 columns and also have 5 views
based on these columns.
Views basically do a
select count(*), test from mytest
where test is null
group by test
or
select count(*), test from mytest
where test is not null
group by test
Explain plan shows the same path (FULL TABLE ACCESS) before and after creating index on the column test. The tabe has less than 100 rows and that might be the reason for full table access or is it something else I might be missing.
Query Plan