skip_unusable_index parameter

itpremier發表於2010-12-07

alter session/system set skip_unusable_index = true/false ;

The point :

1, if set to true, then allow DML on table with unusable indexes(and index partitions). Or set to false to disallow DML on table.

2, DML on tables with constraints which with unusable index status will failed because data maybe violated constraint if DML allowed.

3, if DML not referencing on index column, DML will successfull dispite of this parameter .

suppose index idx_job_emp is defined on column job.

alter session set skip_unusable_index = false ;

insert into emp( empno, job, deptno) values (1,'analyzer',10) ; -- false ,because index maintenance can not be skip.

insert into emp( empno, deptno) values (1,10) ; -- successfull , because index does not indexing NULL value key.

[@more@]

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

相關文章