ORA-29846: cannot create a local domain index on a string partitioned table ORACLE 报错 故障修复 远程处理
文档解释
ORA-29846: cannot create a local domain index on a string partitioned table
Cause: User specified a create local domain index statement on a table partitioned using a method not supported by domain indexes
Action: Build a global domain index on the partitioned table
ORA-29846: 表示无法在分区的字符串表上创建域索引。
官方解释
案例:UserA试图在Oracle字符表表上创建域索引,并报出了ORA-29846: 不能在字符分区表上创建域索引的错误。
一般处理方法及步骤
1.从字符表复制数据到一个新非分区表。
2.使用新表创建域索引。
3.备份新表并将其作为域索引。
4.覆盖原字符表和索引。