You are on page 1of 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