import a table without indices , constraints
Hello all
I want to import a table into an 11.2.0.3 database - data only. I don't want to build indices or constraints or anything else
I am using the following par file
TABLES=
OWNER.TABLE1 directory=EXPDP
content=DATA_ONLY
exclude=INDEX,CONSTRAINT
table_exists_action=truncate
logfile=FILENAMEilog
dumpfile=FILENAME%U.dmp
parallel=2
Tried it last night. I saw tha almost all the records have been inserted into the table TABLE1 (not all, but very close) and then oracle started runnning a sort/merge which lasted forever and I had to kill the job
I am excluding indices and constraints here. What could have caused that sort?