- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- data migration
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 05:39 AM
02-14-2008 05:39 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 06:27 AM
02-14-2008 06:27 AM
Re: data migration
There is a plan in place for that right, using cold backups?
Ok, execute the existing recovery plan on a fresh target. That's all.
Books have been written on the subject.
Read them use them!
Obvious starting point:
"Oracle® Database Backup and Recovery Advanced User's Guide"
I like two distinct method myself:
Save the DB layout: "alter database backup control to trace"
Adapt to new server, and execute on new server to create 'empty' DB.
Now export on old | zip | transfer | unzip | import on new
I have also had good luck just doing the raw devices. Create a script driven by dba_datafiles to find the raw space an block used. With multiple parralel dd stream zip up the raw data. As a stream finished, push over the container and unzip and dd into the fresh raw device. Wait till all streams are done.
I would strongly suggest just try/test on live data first to see if you are in the ballpark and to get a gutfeel on how long this will take. Then, secure in the knowledge you can do it, and with a solid estimate of the transfer times, shut down the DB and do it for real.
Good luck!
Hein van den Heuvel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 08:27 AM
02-14-2008 08:27 AM
Re: data migration
If you can not afford the downtime you have to look into a dump-and-load method which can be done ahead of time and then sync up at the time of the cutover. There are many variations of the dump and load method.
You did not mention if the new server is going to use the old hostname and IP. If so you need additional downtime for the server cutover.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 10:24 AM
02-14-2008 10:24 AM
Re: data migration
Thank you very much in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2008 06:33 PM
02-14-2008 06:33 PM
Solution1. Bring up the new server under a temporary name and IP address.
2. Allow the new server to rlogin/remsh/rcp to the old server without a password. You have to put the new server's hostname in the /.rhosts file of the old server.
3. Copy the software from the old server to the new one. This is only for the additional volumes that are not included in vg00. Was vgedi included in the ignite tape? For example to copy /oracle from the old server to the new one use the commands
(run these on the new server)
cd /oracle
remsh
4. Copy the raw volumes one by one (this must be done with NO activity on the raw volumes).
remsh oldserver dd if=/dev/vgraw/
(rlv-oldvol is the raw volume on the old server and rlv-newvol is the raw volume on the new server. The old and new volumes must be of identical size and geometry)
5. Shutdown oldserver
6. change hostname and IP of new server to match those of the old server.
Note A. After step 4, if possible run a test using the database under the new name and IP.
Note B. If it does not work after step 6, power off the new server and boot up the old server and the old environment is up.