码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 分区表中索引失效

时间:2014-09-19 01:07:14      阅读:457      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   div   art   sp   log   

当对分区表进行 一些操作时,会造成索引失效。

 当有truncate/drop/exchange 操作分区  时全局索引 会失效。

exchange 的临时表没有索引,或者
有索引,没有用including indexes的关键字,会导致局部的索引失效,就是某个分区失效
重建局部索引只能用alter index local_idx rebuild partition p1这样的方式

分区表SPLIT的时候,如果MAX区中已经有记录了,这个时候SPLIT就会导致有记录的新增分区的局部索引失效!

 

查寻某个分区表中 各个分区 索引状态  USABLE/UNUSABLE

select index_name, partition_name, status
  from user_ind_partitions
 where index_name = indexName;
 

--重建索引

--local索引重建
select b.table_name,
a.INDEX_NAME,
a.PARTITION_NAME,
a.STATUS,
alter index  || a.index_name ||  rebuild partition  ||partition_name || ; 重建列
from USER_IND_PARTITIONS a, user_part_indexes b
where a.index_name = b.index_name
and b.TABLE_NAME IN (PART_TAB_SPLIT)
and STATUS = UNUSABLE
ORDER BY b.table_name, a.INDEX_NAME, a.PARTITION_NAME;

--全局索引重建 
alter index idx_part_split_col3 rebuild;

在针对truncate等 操作时直接更新 index 也可以搞定。 

alter table part_tab_trunc truncate partition p2 Update GLOBAL  indexes;

  

Oracle 分区表中索引失效

标签:style   blog   color   io   ar   div   art   sp   log   

原文地址:http://www.cnblogs.com/javaMan/p/3980469.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!