Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Adding a new partition to a partitioned table

HouseofHungerSep 13 2010 — edited Sep 13 2010
Hi all,

I have a table partitioned such that the last/current partition has a HIGH_VALUE of MAXVALUE. This current partition has become rather too large and I'd like to cap it and move on to a new partition. Is there a way of achieving this without having to SPLIT the current partition as this will require twice as much space as the current partition that I'd like to end or cap, and I haven't got much space plus splitting a large partition (+150Gb) takes time
Have tried adding a new partition along the lines of :

Alter Table Test Add Partition P_Current_New Values Less Than (Maxvalue)

However since the current partition on my table has a high value of MAXVALUE, I cannot do this, I get the error:

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

Any ideas?

Thanks
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 11 2010
Added on Sep 13 2010
4 comments
1,377 views