Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> rman/standby
I have configured a standby database operating in "manual mode" for our
production database.
I will have to apply the archive logs manually for the standby database.
The Archive logs that are genarated on the production server is backed up by RMAN/netbackup and deleted after the backup.I have the stopped the deletion of archive files from the RMAN script.
I want to find the best way of getting both RMAN/netbackup to happen and
also delete
the archive logs.But before they are deleted they need to be copied to a
seperate
directory so that I can apply those backed up files to the standby
database.I want to
make sure that I don't loose any of the archive files that the standby
database needs
to be in sync with the production database inclucing the current archive
logs that
may be backed up on the production database.
The rman script is like this
run {
allocate channel t1 type 'SBT_TAPE';
backup
incremental level 1
tag Dialy_Incremental_Backup_Level1
filesperset 5
format 'Data_%d_%s_%p_%t'
(database);
sql 'alter system archive log current';
backup
filesperset 20
format 'Arch_%d_%s_%p_%t'
# (archivelog all delete input);
(archivelog all);
}
How do I do it.?
Thanks
Ravindra
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Ravindra Basavaraja
INET: ravindra_at_sentica.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Tue Aug 14 2001 - 19:33:01 CDT
![]() |
![]() |