[Oracle] Index Full Scan vs Index Fast Full Scan作者:汪海 (Wanghai) 日期:14-Aug-2005 出处:http://spaces.msn.com/members/wzwanghai/--------------------------------------------------------------------------------Index Full Scan vs Index Fast Full Scan index fu…
SQL> drop table test; 表已删除. SQL> create table test as select * from dba_objects where 1!=1; 表已创建. SQL> create index idx_test_id on test(object_id); 索引已创建. SQL> insert into test select * from dba_objects where object_id is not null and object_i…
INDEX FULL SCAN 索引全扫描.单块读 .它扫描的结果是有序的,因为索引是有序的.它通常发生在 下面几种情况(注意:即使SQL满足以下情况 不一定会走索引全扫描) 1. SQL语句有order by选项,并且order by 的列都包含 在索引中,并且order by 后列顺序必须和索引列顺序一致. 2. 在进行SORT MERGE JOIN的时候,如果要查询的列通过索 引就能获得,那就不必进行全表扫描了,另外也避免了排 序,因为INDEX FULL SCAN返回的结果已经排序. 3…