ORA-14637: cannot merge a subpartition with itself
Cause: The same subpartition name was specified twice for the merge operation
Action: Re-submit operation with 2 distinct subpartition names within the same composite partition
**官方解释**
ORA-14637 表明尝试将子分区与它自身合并,而不是其他子分区。
**常见案例**
当用户尝试使用ALTER TABLE… MERGE PARTITION命令时,但提供的子分区与本身相同,就会出现ORA-14637错误。
**正常处理方法及步骤**
1. 确保要用于合并的子分区不相同。
2. 使用ALTER TABLE… MERGE PARTITION, 指定要合并的子分区。