您好,登錄后才能下訂單哦!
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@]免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。