Improve performance / alternative measures for DB Export / Import
I'm using an export database (For DB running on Oracle 10g) command as below :
exp system/<system_password> full=y compress=n grants=y buffer=1024000 file=<export.exp> log=<export.log> indexes=n constraints=n
I'm not sure why but DB export took 12 hours to complete and worse part, during import using the following command:
imp system/<password>@<Oracle SID> full=y commit=y ignore=y grants=n buffer=1024000 file=<Export File Name> log=<Log File Name> indexes=n constraints=n
took 33 Hours to complete with errors which needed to be fixed after the import to proceed.