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!

Creating interval parition to existing range partition

841883Apr 23 2013 — edited Apr 23 2013
I have a table which has range partition on a number column.

CREATE TABLE TEST(
id INT NOT NULL,
start INT NOT NULL
)
PARTITION BY RANGE (start)
(
PARTITION old_Data VALUES LESS THAN (1000000) TABLESPACE old,
PARTITION new_Data VALUES LESS THAN (MAXVALUE) TABLESPACE new
);

I would like to create monthly interval partition in old_data partition. Is this possible? Don't see any syntax for supporting this scenario.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 21 2013
Added on Apr 23 2013
4 comments
293 views