0% found this document useful (0 votes)
96 views

ORA 14400: Inserted Partition Key Does Not Map To Any Partition

The document describes errors that occurred when trying to insert a record into a partitioned table. The first insert failed because the partition for the year 2025 did not exist. An alter table was then attempted to add a partition for years less than 2020, but this also failed because a partition already existed for a lower bound.

Uploaded by

Rahul Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
96 views

ORA 14400: Inserted Partition Key Does Not Map To Any Partition

The document describes errors that occurred when trying to insert a record into a partitioned table. The first insert failed because the partition for the year 2025 did not exist. An alter table was then attempted to add a partition for years less than 2020, but this also failed because a partition already existed for a lower bound.

Uploaded by

Rahul Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Insert into RSHARA01.

STUDENT(REGNO,NAME,COURSE,YEAR)
VALUES(125,'BHARATH','BBM',2025);

ORA14400:insertedpartitionkeydoesnotmaptoanypartition

Reason : Partition doesnt exists for 2025 or less.

********************************************************

ALTER TABLE RSHARA01.STUDENT


ADD
PARTITION YEAR_P5 VALUES LESS THAN (2020) TABLESPACE users;

ORA-14074: partition bound must collate higher than that of the last partition

Reason : Partition key less than 2020 already exists

You might also like