www.oradev.com
  Database   Sql   Functions   Packages   Performance   Books   Oracle   Other   About   XML   ORA-messages
  ORA-14400

Common error messages

TNS connection closed
IO error writing block
Resource busy
Invalid character
Invalid datatype
Syntax error
Looping chain synonyms
Resolve connect identifier
number too large for buffer
ORA-01487
ORA-04031
ORA-12545
ORA-06550
ORA-01650
All error messages



  OraDev.com

ORA-14400: inserted partition key does not map to any partition

Cause: An attempt was made to insert a record into, a Range or Composite Range object, with a concatenated partition key that is beyond the concatenated partition bound list of the last partition
OR An attempt was made to insert a record into a List object with a partition key that did not match the literal values specified for any of the partitions.
Action: Do not insert the key.
OR add a partition capable of accepting the key,
OR add values matching the key to a partition specification
First check out what partition keys are on your table.(query user_tab_partitions). Probably the value you are trying to insert does not match any partition. Maybe you forgot a range or did not set a MAXVALUE partition. If you have this problem with SQL*Loader, it might be a SQL*Loader bug. Try to insert the values with an insert-statement.