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!

best rapid ! way to reoganization of table contains blobs

orasiyaDec 19 2022 — edited Dec 19 2022

Dear firends,
I have got a table contains blob column (total size 900GB) , I would like to reorganize it by creating new table as partitioned table for best performance.
what is rapid way?
a- using parallel expdp ( query=\"where ID\>=... and ID\<=.... ) and using parallel impdp's into new partitioned table
......
b-using CTAS (into parttioned table)
create table new_table_lob_p ..... partition .....
INSERT /*+APPEND*/ into new_table_lob_p as select parallel(16) * from old_table_lob

regards

Comments
Post Details
Added on Dec 19 2022
2 comments
381 views