|
Re: import - how to make it faster [message #194149 is a reply to message #194138] |
Thu, 21 September 2006 00:26 |
Shamsher
Messages: 18 Registered: September 2006
|
Junior Member |
|
|
Use Commit=N if you can efford to, Larger tables may not be suitable for this option due to the required rollback/undo space.
Use sufficient buffer size for better performance;
Buffer=Nk
Use no index while importing by specifying Index parameter with no option insist of that can generate a Indexfile which you can run later to recreate all indexes.
Index=N
last but not lease recommended on your own risk _disable_logging = true oracle hidden parameter to reduce redo log generation but import will be not recoverable in case of failure.
Imp xyz/xyz@xyz file=xyz.dmp index=N buffer=750000 commit=N indexfile-xyz.txt
Thanks and Regards
Shamsheer
|
|
|
|
|
|