關於INLIST ITERATOR的幾個測試

shuangoracle發表於2012-05-21
文件說明:
When the Optimizer Uses IN-List Iterators
The optimizer uses an IN-list iterator when an IN clause is specified with values, and the optimizer finds a selective index for that column. 
If there are multiple OR clauses using the same index, then the optimizer chooses this operation rather than CONCATENATION or UNION ALL, 
because it is more efficient.

下面來看幾種情況:

測試環境:
SQL> create table t1 as select * from dba_objects;

表已建立。

SQL> set linesize 200 pagesize 200

1、表上object_id欄位沒有索引
SQL> select /*+gather_plan_statistics*/ object_name,object_id from t1 where object_id in (100,200,300,400,500,600);

OBJECT_NAME                      OBJECT_ID                                                            
-------------------------------- ----------                                                            
ORA$BASE                         100                                                            
I_SQL$TEXT_PKEY                  200                                                            
RESOURCE_CAPABILITY$             300                                                            
ENC$                             400                                                            
OID$                             500                                                            

SQL> select * from table(dbms_xplan.display_cursor(null,null,'iostats last'));

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

相關文章