Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Also, be sure you do not import constraints. Import would try to validate them so is going to be faster if you create constraints after import is complete including the NOVALIDATE parameter.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Import will anyway build indexes after dataload.. then what's the point?.. only thing that doesnt do is "parallel".. for that use expdp/impdp..
Abhay.
While importing with param index=no indexes will not load in the database
after data load in the database we can give the param indexfile to create the indexes
2)If you are really in Hurry give commit=no while importing it will load the data fast but make sure your rollbaack segment must be very huge.
While importing with param index=no indexes will not load in the database
after data load in the database we can give the param indexfile to create the indexes
2)If you are really in Hurry give commit=no while importing it will load the data fast but make sure your rollbaack segment must be very huge.
Be carefull with using no commit, if the table is very large you will blow out your undo and then that table import will rollback and you will have to re-import it, and that sucks.
I prefer using a buffer and commit to avoid that.
COMMIT=Y
BUFFER=12000000
Something like that helps, you will also avoid the rare instance (IME) where the default buffer is not large enough to swallow the longest column in the table, I've seen that once or twice.
Bookmarks