QUESTION POSED ON: 11 June 2007 I tried to import a database dump onto my Oracle server using the imp
script. The import process currently takes 13 hours to import a 3 GB dump file.
Any ideas will greatly help.
>
Here are are some suggestions.
Check the database alert log. If you see messages like Checkpoint
Incomplete, or if log files are switching frequently, then you need to
increase the size and number of redo log files.
Set or increase the size of the BUFFER parameter on your import.
This will increase the size of the buffer that Oracle uses to do the
bulk inserts.
If possible, create a large UNDO tablespace, and switch to that large
UNDO tablespace by using the alter system undo_tablespace=Large_Undo
before the import. Then, run the IMP with the COMMIT=N option. After
the import completes, switch back to the old UNDO tablespace and then
drop the large one if it is no longer necessary.
If you do not have the enough space for a larger redo then try
increasing the COMMIT parameter setting on the IMP command.
Increase the SORT_AREA_SIZE parameter. Increasing this parameter
will provide more space for sorting operations when creating indexes.
Increase the LOG_CHECKPOINT_INTERVAL. This will help to reduce the
number of checkpoints.
Search and Browse the Expert Answer Center Search and browse more than 25,000 question and
answer pairs from more than 250 TechTarget industry experts.
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.