标题: Error ORA-14400 On Import Into Partitioned Table [打印本页] 作者: 刘泽宇 时间: 2025-7-13 11:14 标题: Error ORA-14400 On Import Into Partitioned Table 现象:
When importing into a partitioned table, you receive the following error message:
ORA-14400: "inserted partition key is beyond highest legal partition key"
Cause: the concatenated partition key of an inserted record is beyond
the concatenated partition bound list of the last partition
Action: do not insert the key or add a partition capable of accepting
the key.
原因:
You were attempting to import non-partitioned data into a partitioned table. This also applies to attempting to import data from a hash partitioned table to a ranged partitioned table.
处理方法:
Import the data into a non-partitioned table then insert that data into a partitioned table.