ORA-14082: new partition name must differ from that of any other partition of the object
Cause: User entered ALTER TABLE/INDEX RENAME PARTITION specifying which is identical to the name of some existing partition of the object
Action: Ensure that the new partition name is different from the name of any (including the one being renamed) existing partition of a given table or index
ORA-14082错误消息指出,当DBA尝试将物件(如表,索引或符合分区)进行分区时,新分区的名字不允许与原分区使用及其他分区中相同的名称。这意味着DBA应避免使用同一名称来命名不同的分区。
错误ORA-14082指示尝试创建新分区时,新分区名称与现有分区中的某个分区名称相同,而且不允许重复使用新分区的名称。
考虑下列情况:DBA尝试创建一个分区表,其中包含已经存在的名称为LOC_EAST的PARTITION。执行语句时,出现以下错误:
ERROR at Line 1:
ORA-14082: new partition name must differ from that of any other partition of the object
(1) 运行以下查询,获取具有类似名称的分区:
SELECT PARTITION_NAME FROM USER_TAB_PARTITIONS WHERE TABLE_NAME = ‘表名’;
(2) 修改新的分区名称,以便它与现有的分区名称不同。
(3)重新执行语句,确保它能够正常运行。