Restore Oracle Database to Lower Version
Oracle does not restore a database dump of a higher version into a lower version if regular import and export are used. To restore a database dump of higher version to a lower version use the following steps.
- Goto the source database and export the database using expdp command. (Regular export is done using exp command).
- This will export the database dump into the oracle installation directory.
- Transfer the backup datafile into the source database machine. The file should be kept in oracle installation directory.
- Import the data using impdp command.
- This will restore the database to lower version of oracle also. DP stands for Data Pump.
- For details on how to restore databases refer Oracle DB restoration.
Comments
Post a Comment