Home » RDBMS Server » Server Administration » Restore to diff box rman
Restore to diff box rman [message #163369] Thu, 16 March 2006 07:43 Go to next message
kapil2005
Messages: 44
Registered: March 2005
Member
Here is the script i used to take the backup uring rman

connect catalog rman_92/backoffu2@RMAN_CATALOG
connect target /
run
{
allocate channel ch0 type 'sbt_tape';
allocate channel ch1 type 'sbt_tape';
backup database
format 'd%d_df_U%U_s%s_p%p'
include current controlfile
filesperset=8;

sql 'alter system archive log current';

backup
format '%d_al_U%U_s%s_p%p'
filesperset=12
(archivelog all);

backup
format '%d_cntl_U%U_s%S_p%p'
(current controlfile);

release channel ch0;
allocate channel ch0 type disk;
backup
format '/u06/app/oracle/admin/SIAT/siebel/rpsfiles/backup/%d_al_U%U_s%s_p%p'
filesperset=12
(archivelog until time 'sysdate-1'
delete input);

release channel ch0 ;
release channel ch1 ;
}
exit;


Now I need to restore and recover this database to a different location on different server. what should be my rman script?
Thank you all very much.
Re: Restore to diff box rman [message #163388 is a reply to message #163369] Thu, 16 March 2006 10:24 Go to previous message
Mahesh Rajendran
Messages: 10708
Registered: March 2002
Location: oracleDocoVille
Senior Member
Account Moderator
http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmrecov.htm#1007514
Previous Topic: GRANT TO ALLOW A USER ISSUE A DESCRIBE ON ANY TABLE
Next Topic: Why cannot I create a unique key constraint with novalidate ?
Goto Forum:
  


Current Time: Tue Feb 18 18:46:47 CST 2025