文档解释
ORA-14262: new subpartition name must differ from the old subpartition name
Cause: User entered ALTER TABLE/INDEX RENAME SUBPARTITION specifying which is identical to the name of the subpartition being renamed
Action: Ensure that the new subpartition name is different from the name of any (including the one being renamed) existing subpartition of a given table or index
该错误消息指出,新建的分区名必须与已有的分区名不同。
官方解释
错误 14262,表示新创建的子分区名称无效,因为它与已经存在的子分区名称相同。
常见案例
经常发生这种情况是因为用户尝试重命名已经存在的子分区,且新名称和原名称相同,因此无效。
正常处理方法及步骤
要解决这个问题,请只使用以前不存在的有效子分区名称。在Oracle中,每个分区名必须都是唯一的,并且区分大小写。