Hi,
Oracle version: 10g
O.S: Windows 2003
I've 2 oracle instance: ORCL1 (schema TOM) on machine1 and ORCL2 (schema SAM) on machine2
I'd like to import the schema TOM into schema SAM.
TOM schema size is 300 GB
I exported TOM with following parfile:
SCHEMAS=TOM
DIRECTORY=TOM_DIR
DUMPFILE=exp_tom_%U.dmp
LOGFILE=exp_tom.log
filesize=30GB
JOB_NAME=EXP_JOB
and created about 10 dump files in more of 30 hours
Now I need import into schema SAM, but I'd like to import faster
Which parameter can I add at following imp parfile to speed up the import?
schemas=TOM
remap_schema=TOM:SAM
logfile=imp_sam.log
directory=SAM_DIR
DUMPFILE=exp_tom_%U.dmp
exclude=statistics
job_name=IMP_JOB
Thanks in advance!