Search: For:
Browsing Single Category

partitioning reorg using EXP/IMP

Topic ID: 242
Created By: 2003-DEC-05 17:50:02 [Oper01]
Updated By: 2003-DEC-05 17:50:30 [Oper01]
Status: Closed
Severity: Normal
Read Only: No
1033
2003-DEC-05 17:50:02
User
 
 
Registered On: Mar 2006
Total Posts: 143
partitioning reorg using EXP/IMP

1. export the table
--------------------
exp / compress=n direct=y tables=DSSWH.F_PROGRAM_PARTICIPATION log=DSSWH.F_PROGRAM_PARTICIPATION.log file=DSSWH.F_PROGRAM_PARTICIPATION.dmp &

2. Rename just to have a backup if things go south
--------------------------------------------------
SQL> rename F_PROGRAM_PARTICIPATION  to F_PROGRAM_PARTICIPATION_old;


2. drop all constraints and indexes at this point
--------------------------------------------------

3. recreate table with what-ever partitions you need
----------------------------------------------------

4. Reload the data
------------------
imp / ignore=y indexes=n constraints=n fromuser=DSSWH touser=DSSWH log=DSSWH.F_PROGRAM_PARTICIPATION.imp_log file=DSSWH.F_PROGRAM_PARTICIPATION.dmp &
1034
2003-DEC-05 17:50:30
User
 
 
Registered On: Mar 2006
Total Posts: 143
.