Oracle on old to new server [message #98949] |
Thu, 27 November 2003 22:34 |
Ashish Deshpande
Messages: 1 Registered: November 2003
|
Junior Member |
|
|
see i have got oracle on linux installed on one machine. this machine has got working database. now i have purcahsed new machine server. i want to copy old machines entire oracle database on this machine. what steps should i take? is it possible to just copy oracle folder to this new machine and have entire database running on new mahcine . if not then what files should i copy and where?
|
|
|
Re: Oracle on old to new server [message #98950 is a reply to message #98949] |
Fri, 28 November 2003 10:29 |
neoepicurians
Messages: 3 Registered: October 2003
|
Junior Member |
|
|
Hello
Yes, itīs possible
In the oracle directory
find . -depth -print | cpio -o -a -H crc | gzip > /tmp/test.cpio.gz &
In the new destination
cd target directory
cat /tmp/test.cpio.gz | gunzip | cpio -idH crc
grusz
|
|
|