标签:分区索引 sele rebuild 查询 alt lte nio status bsp
-- 检查索引状态
select index_name, partition_name, status
from user_ind_partitions
where status = ‘UNUSABLE‘
union all
select index_name, ‘‘ as partition_name, status
from user_indexes
where status = ‘UNUSABLE‘;
-- 重建分区索引
alter index PK_SALE rebuild partition PY11Q3;
alter index IPK_TT_BSP_WAYBILL rebuild
标签:分区索引 sele rebuild 查询 alt lte nio status bsp
原文地址:http://www.cnblogs.com/fubinhnust/p/7921421.html