Transfer Oracle Database to another server
Revision as of 03:00, 14 October 2014 by Nicolas Rollin (talk | contribs)
- Make sure your source database is in archive log mode.
- Begin backup all tablespaces in the source DB.
- copy all datafiles in backup mode to the destination server. (via rcp/ftp or whatever you like..)
- End backup all tablespaces in the source DB.
- "ALTER SYSTEM ARCHIVE LOG CURRENT" in the source DB.
- Copy the archive logs generated to the destination server.
- Startup the cloned database with normal recovery procedure. i.e. : startup mount -> recover database -> alter database open...