I have questions about RMAN and full backup.
I have serverA and serverB, and I need to restore database from TSM to serverB with different DBNAME,SID,etc.
What I did so far:
1) Copied from serverA to serverB all configuration files to make environment the same;
2) Created new database instance;
3) Added in tnsnames.ora rman catalog DB connecting info
4) After that I shutdowned database
5) Started to run the rman:
- Code: Select all
rman target /
connect catalog rman/cat@cat
set dbid source_db_id
run {
allocate channel ch1 type 'SBT' parms'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
restore database;
recover database;
}
After that restore started and after a while I get error:
- Code: Select all
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of recover command at 03/04/2013 17:22:10
ORA-00210: cannot open the specified control file
What I have to do? I don't have any clues