Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Index skip scan
It is very simple to generate a plan without a hint:
create table test as select * from dba_indexes; create index test_idx1 on test(uniqueness, compression, index_name); -- the first two columns are not very selective exec dbms_stats.gather_table_stats('<OwnerName','TEST',cascade=>true);
PLAN_TABLE_OUTPUT
| Id | Operation | Name | Rows | Bytes | Cost|
From: Gogala, Mladen [mailto:MGogala_at_allegientsystems.com] Sent: Tuesday, September 20, 2005 2:20 PM To: Hameed, Amir; oracle-l_at_freelists.org Subject: RE: Index skip scan Generally speaking, I've never seen CBO chose skip scan byitself. INDEX_SS may help, if you're
certain that it will improve performance.
--
Mladen Gogala
Ext. 121
From: Hameed, Amir [mailto:Amir.Hameed_at_xerox.com] Sent: Tuesday, September 20, 2005 12:58 PM To: oracle-l_at_freelists.org Subject: Index skip scan Folks, Does anyone know that in order for the optimizer to choose"Index skip scan" on a concatenated index where the first column is not very selective but the second one is, approximately what type of selectivity on the leading column the Optimizer look for before deciding to take this route?
Thanks Amir
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Sep 20 2005 - 13:52:23 CDT
![]() |
![]() |