Transfer or move an Oracle database between platforms
1. On the target machine, use the DBCA or any creation script to create the blank database with the datafiles in the proper location.
2. Configure tnsnames.ora and listener.ora for the new database on the target machine.
3. On the old machine, run the following command to do a full export:
exp system/manager FULL=y FILE=exp_full.dmp LOG=exp_full.log
4. Copy the dmp file to the target machine in binary mode
5. On the new host, export your ORACLE_SID and then run the following command to do the import:
imp system/manager FULL=y FILE=exp_full.dmp LOG=imp_full.log IGNORE=y
That is it - now you have your database copied from your old server to the new server.

0 Comments:
Post a Comment
Links to this post:
Create a Link
<< Home