Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Rman client migration queston

Status
Not open for further replies.

jouell

MIS
Nov 19, 2002
304
US
Hi

We have a database we currently backup via rman and use the catalog. We have vdumped the db and control files over the network and are readying the new database on new hardware.
We will shutdown the old copy of the db, and bring up the new one on new hardware.

How do I make sure rman is ok with backing up the "new" copy of the database, which will have the same DBID as the old?


Thanks!
-John
 

If theDBID is the same, take a full RMAN backup of new database and you may only need to "synchronize" the archive logs:

Code:
SQL "ALTER SYSTEM CHECKPOINT";

ALLOCATE CHANNEL FOR MAINTENANCE TYPE DISK;
CHANGE ARCHIVELOG ALL CROSSCHECK;

[noevil]

----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Oracle Tech says no change is needed.

however, I do automatic channel allocation w/legato networker , so I will update NSR_CLIENT variables for my RAC databases, and not a bad idea for single instance,too.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top