|
-
 Originally Posted by vnktummala
Could you please share your views to convert non-partitioned table to partitioned which is 600GB size?
Option 1: using data pump
Option 2: pre create partition table and do insert with append hint
Option 3: use dbms_redefinition package
We recently used option #2 for a two billion rows table; we chose #2 because less physical I/O than option #1 and also for allowing more "control" over the whole process.
1- pre create partitioned table -in our case date range per YYYYMM, one tablespace per "year"
2- start multiple insert streams -in our case one job per year so each job would take care of loading twelve YYYYMM partitions using append hint.
3- build indexes -in our case all of them locally partitioned.
4- gather fresh performance stats.
It worked like a charm.
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|