Title: | NetWorker |
Notice: | kits - 12-14, problem reporting - 41.*, basics 1-100 |
Moderator: | DECWET::RANDALL .com::lenox |
Created: | Thu Oct 10 1996 |
Last Modified: | Fri Jun 06 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 750 |
Total number of notes: | 3361 |
I have a question that is a variation on 272. My customer has 60GB od raw data )Oracle OPS environment). He wants to make a copy of this data onto another set of disks. This is because he will be running several tests, and needs to "reload" his database without all the pain of doing the database reload. He would like to use Networker to do a backup and immediate restore to the other set of disks WITHOUT going to tape. For filesystems, we can do a vdump | vrestore which does a disk to disk copy. Is it possible to do something like this with Networker? Thanks, /jim
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
385.1 | use dd | NETRIX::"[email protected]" | edmond Cohen | Wed Feb 05 1997 06:06 | 4 |
to copy your disk to disk, you can use "dd" (I suppose you are on unix ) but the disk must be identical. [Posted by WWW Notes gateway] | |||||
385.2 | Oracle recommends export/import | DECWET::EVANS | Be a Point Of Light! | Thu Feb 06 1997 10:10 | 14 |
To properly transport your DB, Oracle recommends you do an export to flat file, and import to reconstruct that DB in a new environment. You also did not mention if this was Unix, or NT... 272 is about NT (but then devolves into generalities) Purely Theoretical (unix models, dunno which might work for NT): tar->tar, disk->disk? cd /dev/<dbdisk>; tar cpf - . | (cd /dev/<emptydisk>; tar xpf -) DMO? shutdown DB, obackup offline database, switchover to new DB, obackup recover database - this is *pure ORACLE*, so see them for details... uasm/rawasm same as tar, but using these tools. see man pages for details. |