Link to home
Start Free TrialLog in
Avatar of Alistair_Williams
Alistair_WilliamsFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Duplicate Database Scenario

Hi,

Just after some advise really.

We have a live server A which runs RMAN and stores all generated files on server B.

Recently we have created a duplicate database (via RMAN) on server C. Server C used the RMAN files stored on server B.

Server C is in nomount mode, but is it possible to use RMAN on server C to just "restore" the database (i don't want to keep running duplicate). The idea being that server C has access to the backup files on B and can then restore itself. I presume server C just needs to know the location of the backup logs on B, as it does not ever need to be in archivelog mode - (if it was ever mounted).

Will the above work ?

Thanks

Alistair
Avatar of MohanKNair
MohanKNair

You can bring up the Database in server C by copying the controlfile, datafiles.

1) Copy datafiles and controlfiles to server C
2) Edit the initialization file
3) Create password file
4) startup the database
SOLUTION
Avatar of MohanKNair
MohanKNair

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi,
  Seems that you are trying to achieve something like a "Stand By" database concept. Check the "Stand By Database" Concpets, to verify if you are trying to achieve the same result.
HTH.
Regards,
Badri.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Acton Wang
Acton Wang
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Alistair_Williams

ASKER

Hi,

Thanks for all your help on this. I think Pradeepgv03 is closest to what I am trying to do. I am not really trying to achive a standby system. What I really want is a test system that I can just run a restore from, if and when I want - (given that the relevant RMAN logs are available).

So, I have a test server that I want to restore at some point in the future. What I want to do is dulplicate the live server once (this I have done), - but now I want the test server to use the RMAN stuff that is generated by live. This is what I am wondering is possible.

I am not using the catalogue, just control file, but what information to I need to set in the init.ora on the test server, as I don not want the test server to generate logs, just to read them in form the live location.

Thanks

Alistair
.... the reason for my comment above is

On the test database I try to run a restore and I get the following .......

RMAN-06023: no backup or copy of datafile 5 found to restore.

I can understand why this is as it does not find the backups. But I am not too sure what I need to do in order for it to do the restore.

On the test server init.ora I have the following enteries ......

log_archive_dest_1="LOCATION=W:\Multiplexed_Archive_Logs"
log_archive_format=arc%s.%t
If you have added datafiles to the primary database, then the datafile has to be manually created in standby using "alter database" command.

alter database create datafile '<filename>';
.... one other thing. Where do I run the rman restore from.

On the live box do I connect to the auxlilary test database and issue the restore.
or
ON the test box connect to the auxiliary test database and issue the restore.
or
does it matter where it is done from ?

Thanks

Alistair
Target database is the one that is undergoing a backup, restore or recovery operation by the RMAN.
Auxiliary instance identifies an instance which RMAN connects in order to execute the duplicate command.
An RMAN Channel is a communication pipeline between a RMAN executable and a target or auxiliary database.

The command below connection is established to three databases ie catalog, target and auxiliary

% rman catalog rman/rman@rcat target sys/sys_pwd@prod1 auxiliary scott/tiger@dupdb

The rman executable can be run from any machine. Even a client PC with Oracle client installed can be used to run RMAN executable.

The following links will be of some help
Oracle RMAN Demo - http://www.psoug.org/reference/rman_demos.html
Duplicate a Database Using RMAN - http://www.oracle-base.com/articles/9i/DuplicateDatabaseUsingRMAN9i.php