when running the following command it fails with an error, even it was running successfully before:
expdp system/pass@db10g schemas=test directory=TEST_DIR
parallel=4
dumpfile=test_%U.dmp logfile=test.log
This reported by oracle as a bug, and as a work around you limit the parallel parameter to 1 or patch your database to higher version such as 10.2.0.3 or 10.2.0.4. As this was solved in these patch numbers.
expdp system/pass@db10g schemas=test directory=TEST_DIR
parallel=1
dumpfile=test_%U.dmp logfile=test.log
No comments:
Post a Comment