Oracle訪問索引的執行計劃(五)

stonebox1122發表於2017-05-31

Oracle訪問索引的執行計劃(一)
Oracle訪問索引的執行計劃(二)
Oracle訪問索引的執行計劃(三)

Oracle訪問索引的執行計劃(四)


對於複合索引,如果前導列的不同值很少,而非前導列的不同值很多,那麼在查詢謂詞條件中沒有指定複合索引的前導列,則可能會使用上索引跳躍掃描(INDEX SKIP SCAN)。

 

SQL> create table emp as select * from employees;

Table created.

 

SQL> alter table emp add(gender varchar2(10));

Table altered.

 

SQL> update emp set gender='M' where employee_id<155;

55 rows updated.

 

SQL> update emp set gender='F' where employee_id>=155;

52 rows updated.

 

SQL> commit;

Commit complete.

 

SQL> create index idx_emp_gender_id on emp(gender,employee_id);

Index created.

 

SQL> exec dbms_stats.gather_table_stats('HR','EMP',estimate_percent=>100,cascade=>true);

PL/SQL procedure successfully completed.

 

SQL> select employee_id,last_name,salary,gender from emp where employee_id=100;


Execution Plan
----------------------------------------------------------
Plan hash value: 3822662258

-------------------------------------------------------------------------------------------------
| Id  | Operation                   | Name              | Rows  | Bytes | Cost (%CPU)| Time     |
-------------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT            |                   |     1 |    18 |     2   (0)| 00:00:01 |
|   1 |  TABLE ACCESS BY INDEX ROWID| EMP               |     1 |    18 |     2   (0)| 00:00:01 |
|*  2 |   INDEX SKIP SCAN           | IDX_EMP_GENDER_ID |     1 |       |     1   (0)| 00:00:01 |
-------------------------------------------------------------------------------------------------

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28536251/viewspace-2140113/,如需轉載,請註明出處,否則將追究法律責任。

相關文章