1 重建索引报错SYS@test2 >alter index user02.PK_E_TAB_PAR rebuild online tablespace TBS001 parallel 8 ;alter index user02.PK_E_TAB_PAR rebuild online tablespace TBS001 parallel 8 *ERROR at line 1:ORA-14086: a partitioned index may not be rebuilt as a whole 2 查看官方的报错信息,让根据分区名称进行重建[oracle@yxjcptdb3 ~]$ oerr ora 1408614086, 00000, "a partitioned index may not be rebuilt as a whole"// *Cause: User attempted to rebuild a partitioned index using// ALTER INDEX REBUILD statement, which is illegal// *Action: Rebuild the index a partition at a time (using // ALTER INDEX REBUILD PARTITION) or drop and recreate the// entire index 3 查看官方文档 ORA-14086 When Rebuilding Index Of Partition Table (Doc ID 2403717.1)
APPLIES TO:
Oracle Database Cloud Schema Service - Version N/A and later Oracle Database Exadata Cloud Machine - Version N/A and later Oracle Cloud Infrastructure - Database Service - Version N/A and later Oracle Database Exadata Express Cloud Service - Version N/A and later Oracle Database Backup Service - Version N/A and later Information in this document applies to any platform.
SYMPTOMS
RDBMS version 11.2.0.4 onwards When trying to rebuild an partition index, ORA-14086 error is spotted
CHANGES
No changes
CAUSE
This issue is essentially a syntax error and following correct syntax resolve this ORA-14086 error.
SOLUTION
Step 1: Look-up the partition name in dba_ind_partitions view.
Step 2: specify the partition name in the index rebuild statement:
4 查询分区名称 OWNER SEGMENT_NAME PARTITION_NAME TABLESPACE_NAME SEGMENT_TYPE TRUNC(SUM(BYTES)/1024/1024/1024) -------------------- ---------------------------------------- -------------------- -------------------- -------------------- -------------------------------- user02 PK_E_TAB_PAR E_TAB_PAR20190101 TBS_01 INDEX PARTITION 13 5 根据分区名称,重新重建索引,成功,如下: SYS@test2 >alter index user02.PK_E_TAB_PAR rebuild partition E_TAB_PAR20190101 online tablespace TBS001 parallel 8 ; Index altered.
编辑推荐:
相关推荐
-
雷神推出 MIX PRO II 迷你主机:基于 Ultra 200H,玻璃上盖 + ARGB 灯效
2 月 9 日消息,雷神 (THUNDEROBOT) 现已宣布推出基于英
-
制造商 Musnap 推出彩色墨水屏电纸书 Ocean C:支持手写笔、第三方安卓应用
2 月 10 日消息,制造商 Musnap 现已在海外推出一款 Oce
热文推荐
- 虎牙斗鱼“同病相怜”
虎牙斗鱼“同病相怜”
26-03-03 - 电动牙刷博弈:素士、Usmile们合纵连横
电动牙刷博弈:素士、Usmile们合纵连横
26-03-03 - 手持网络性能以太网测试怎么选?
手持网络性能以太网测试怎么选?
26-03-03 - 主键可以重复?
主键可以重复?
26-03-03 - 一个非常老但是很有用的功能-闪回
一个非常老但是很有用的功能-闪回
26-03-03 - 工业机器人如何保证网络性能
工业机器人如何保证网络性能
26-03-03 - oracle rac 12彻底删除,彻底删除该死的rac
oracle rac 12彻底删除,彻底删除该死的rac
26-03-03 - dblink的关联与本地关联差异
dblink的关联与本地关联差异
26-03-03 - 费控SaaS:告别拓荒、迈向生态竞争
费控SaaS:告别拓荒、迈向生态竞争
26-03-03 - 批量删除大量小文件
批量删除大量小文件
26-03-03
