欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

oracle分区索引的失效和重建代码示例

程序员文章站 2022-03-16 20:28:29
上一篇文章中我们了解了的相关内容,接下来的这篇文章,我们将探讨oracle分区索引的失效和重建问题,提供了相关代码示例供大家参考,具体如下。 --创建测试表 s...

上一篇文章中我们了解了的相关内容,接下来的这篇文章,我们将探讨oracle分区索引的失效和重建问题,提供了相关代码示例供大家参考,具体如下。

--创建测试表
sql> create table t as select object_id,object_name from dba_objects;

表已创建。

sql> select min(object_id),max(object_id) from t;
min(object_id) max(object_id)
-------------- --------------
       2     76083
sql> create table t_part(object_id int,object_name varchar2(1000)) partition by range(object_id)
 2 (
 3 partition p1 values less than (10000),
 4 partition p2 values less than (20000),
 5 partition p3 values less than (30000),
 6 partition p4 values less than (40000),
 7 partition pm values less than (maxvalue));

表已创建。

sql> insert into t_part select * from t;

已创建72663行。

sql> commit;
--创建本地分区索引
sql> create index idx_part_local on t_part(object_name) local;

索引已创建。
创建全局非分区索引

sql> create index idx_part_global on t_part(object_id) global;

索引已创建。
删除其中一个分区

sql> alter table t_part drop partition p1;

表已更改。
全局非分区索引失效,本地分区索引没有失效

sql> select status,index_name from user_indexes s where index_name='idx_part_global';
status  index_name
-------- ------------------------------
unusable idx_part_global

sql> select status,index_name from user_ind_partitions s where index_name='idx_part_local';

status  index_name
-------- ------------------------------
usable  idx_part_local
usable  idx_part_local
usable  idx_part_local
usable  idx_part_local
--重建失效索引
sql> alter index idx_part_global rebuild;

索引已更改。

在删除表分区的时候,可以通过以下命令进行索引重建

alter table t_part drop partition p2 update indexes;
创建全局分区索引

sql> drop index idx_part_global;

索引已删除。

sql> create index idx_part_global_full on t_part (object_id)
 2   global partition by range (object_id)
 3    (partition p1 values less than (10000),
 4     partition p2 values less than (30000),
 5     partition p3 values less than (maxvalue));

索引已创建。

--删除其中一个分区
sql> alter table t_part drop partition p3;

表已更改。

--全局分区索引失效
sql> select status,index_name from user_ind_partitions s where index_name='idx_part_global_full';
status  index_name
-------- ------------------------------
unusable idx_part_global_full
unusable idx_part_global_full
unusable idx_part_global_full
sql> select /*+index(t idx_part_local)*/ * from t_part t where object_name = '/7f6c264c_iiopaddress';
 object_id object_name
---------- -----------------------------------
   35031 /7f6c264c_iiopaddress
   35030 /7f6c264c_iiopaddress
sql> select /*+index(t idx_part_global_full)*/ * from t_part t where object_id > 35000;
select /*+index(t idx_part_global_full)*/ * from t_part t where object_id > 35000
*

第 1 行出现错误:

ora-01502: 索引 'scott.idx_part_global_full' 或这类索引的分区处于不可用状态
当需要对分区表进行下面操作时,都会导致全局索引的失效。

add (hash) 
coalesce (hash) 
drop 
exchange 
merge 
move 
split 
truncate

之后需要对失效索引进行重建,也可以在删除分区表的时候指定 update indexes 直接进行索引的重建。

总结

以上就是本文关于oracle分区索引的失效和重建代码示例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:、等,有什么问题可以直接留言,小编会及时回复大家的。感谢朋友们对本站的支持!