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!

partitioning the table in online mode of 9GB with clob column taking more time

user9080289Dec 4 2020 — edited Dec 4 2020

Hi
i have a table of 9GB which contain the clob column ,
iam trying to do online partition, it is taking 2 days and it is still inprogress
ALTER TABLE x
PARTITION BY RANGE (CREATIONDATE)
INTERVAL(NUMTOYMINTERVAL(1,'MONTH'))
(
PARTITION p0_till_2018 VALUES LESS THAN (TO_DATE('01-01-2019', 'DD-MM-YYYY'))
)
UPDATE INDEXES
(schema.index1 GLOBAL,
schema.index2 GLOBAL,
schema.index3 GLOBAL
)
ONLINE;
can you tell me do we have any other option line increase memory or any lob parameter to be checked etc , anyother way to reduce the process hours or it is getting locked anywhere ?

Comments
Post Details
Added on Dec 4 2020
7 comments
342 views