文档解释
ORA-14257: cannot move partition other than a Range, List, System, or Hash partition
Cause: User attempt to move a partition that is not a Range,List,System, or Hash partition which is illegal
Action: Specify MOVE PARTITION for a Range,List,System, or Hash partition only
ORA-14257:该错误指出不能移动指定的分区,因为它不是Range、List、System或Hash类型的分区。
官方说明:
ORA-14257 指示不能移动指定的分区,因为它不是 Range 、List、System 或 Hash 类型的分区。
常见案例
如果尝试移动一个 Interval Partition,就会出现 ORA-14257 错误:
SQL> ALTER TABLE table_name MOVE PARTITION part_name TABLESPACE tablespace_name;
ERROR at line 1:
ORA-14257: cannot move partition other than a Range, List, System, or Hash partition
正常处理方法及步骤
如果遇到ORA-14257,用户可以将含有该分区的表数据导出,然后重新创建表,并按原来的顺序将数据插入该表,并指定将分区放入指定的表空间中。