文档解释 ORA-14287: cannot REBUILD a partition of a Composite Range partitioned index Cause: User attempted to rebuild a par
ORA-14287: cannot REBUILD a partition of a Composite Range partitioned index
Cause: User attempted to rebuild a partition of a Composite Range partitioned index which is illegal
Action: REBUILD the index partition, a subpartition at a time
?
ORA-14287:无法重建复合结构分区索引中的分区
ORA-14287被报告,当尝试重建复合结构范围分区索引的某个分区时,因为该操作是不允许的。
ORA-14287一般会在尝试使用ALTER INDEX命令重建索引的分区时发生,可能是由于不支持复合范围分区索引的部分。
在更改索引的分区之前,应该将其转换为非复合结构分区索引。
要转换为非复合结构分区索引:
1. 使用ALTER INDEX语句创建临时删除分区索引:
ALTER INDEX index_name DROP PARTITION PARTNAME;
2. 向索引添加新分区:
ALTER INDEX index_name ADD PARTITION PARTNAME;
3. 使用ALTER INDEX语句重建分区:
ALTER INDEX index_name REBUILD PARTITION PARTNAME;
--结束END--
本文标题: ORA-14287: cannot REBUILD a partition of a Composite Range partitioned index ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/535337.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0