您好,登錄后才能下訂單哦!
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@]免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。