ORA-14626: values being added already exist in DEFAULT subpartition
Cause: An ADD VALUE operation cannot be executed because the values being added exist in the DEFAULT subpartition
Action: Issue a SPLIT of the DEFAULT subpartition and then MERGE the split subpartition into the subpartition to which values need to be added
ORA-14626: 该错误表示你正在尝试添加值到表的一个分区上,添加的值与 DEFAULT 分区的值重复。
ORA-14626 表示在将值添加到表的某个分区时,添加的值与 DEFAULT 分区的值重复了。
ORA-14626 通常发生在我们尝试为分区表添加新值时。如果尝试添加的值已经存在于表的另一个分区中,该错误就会发生。
• 首先,必须确保添加的值在用于建立分区的列上没有重复。
• 在添加新值之前,必须检查默认分区中的值以确保不存在重复。
• 可以使用查询确定默认分区中是否存在重复值。
• 如果要将值添加到表中,则必须确保其他分区中也不存在重复值。