Skip to Main Content

SQL & PL/SQL

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!

Remove a sub-partition

647136Jan 12 2009 — edited Jan 13 2009
Hi folks,
I have a table with millions of rows of data and is range-list partitioned as follows:

PARTITION ---------------- SUB-PARTITION*

part_ran1-------------------sub_part_list1a
part_ran1-------------------sub_part_list1b

part_ran2-------------------sub_part_list2a
part_ran2-------------------sub_part_list2a

now I want to remove all the sub-partitions and have a partitioned structure of the table as follows:

PARTITION---------------- SUB-PARTITION*
part_ran1
part_ran2

I cannot drop the partitions as my data is very critical.
so i decided to merge the subpartitions. I managed to get a partitioned structure of the table as follows:

PARTITION---------------- SUB-PARTITION*

part_ran1-------------------sub_part_final1
part_ran2-------------------sub_part_final2

now what do i do to remove the sub-partiitons :sub_part_final1 ; sub_part_final2

Plz Help... Thnx in advance!!!!

Edited by: Commander on Jan 12, 2009 7:44 PM
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 10 2009
Added on Jan 12 2009
5 comments
1,903 views