0% found this document useful (0 votes)
8 views

Backup DB Level 0

Oracle RMAN

Uploaded by

Nasir Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Backup DB Level 0

Oracle RMAN

Uploaded by

Nasir Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

CREATE SCRIPT backup_db_level_0

{
# This script backs up the entire database. It is part of the
# incremental backup strategy. Performed once a week.
#
# Created by Bheemsen Aitha
backup incremental level 0
skip inaccessible
tag backup_db_level_0
filesperset 6
format '/u11/oracle/backups/df_%t_s%s_s%p'
database
plus archivelog
filesperset 10
format '/u11/oracle/backups/al_%t_s%s_s%p';
delete archivelog until time 'sysdate-3';
}

You might also like