Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Skip_unusable_index parameter

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

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) false, because index maintenance can not be skip.

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

[@ more@]

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report