Adding Partition fails [message #447475] |
Mon, 15 March 2010 07:08  |
koesmet
Messages: 9 Registered: March 2010 Location: munich
|
Junior Member |
|
|
Hi,
I want to add a partition into a ranged partioned table but I receive error:
ALTER TABLE t_log
ADD
PARTITION p897_fft
VALUES
LESS THAN (898);
ORA-14074: partition bound must collate higher than that of the last partition
i check the high value like this:
SELECT partition_name, high_value
FROM dba_tab_partitions
WHERE table_name = 'T_LOG'
AND table_owner = 'PLAT'
ORDER BY partition_position
..
..
..
P866_NNGG 867
P867_JTI 868
P869_RCC 870
P870_SUR 871
P899_MCDW 900
now, what to do? i dont want to remove Partition P899_MCDW.
How to Split?
thanx for your advises..
|
|
|
|
|
|
|
|