ORA-14167: only one subpartition may be moved
Cause: ALTER TABLE MOVE SUBPARTITION contained descriptions of more than one subpartition to be moved
Action: Ensure that the statement describes exactly one subpartition to be moved and that it does not contain any commas
ORA-14167:只能移动一个子分区
ORA-14167错误表明,您正在尝试使用ALTER TABLE MOVE PARTITION命令移动多个子分区。该命令仅允许您将单个子分区移动到新表空间中。
ORA-14167错误具有多种可能的原因。最常见的原因是使用ALTER TABLE MOVE PARTITION命令指定要移动多个子分区。
解决此问题的最佳方法是确保您指定移动的是子分区而不是正分区。在尝试移动多个子分区时,只能移动一个子分区。因此,如果需要将多个子分区移动到新表空间,您必须多次执行ALTER TABLE MOVE PARTITION命令,每次尝试一个子分区。