Create Consistent Backup Script

posted Mar 18, 2011, 9:21 AM by Sachchida Ojha   [ updated Apr 5, 2011, 12:19 PM ]

You can create a RMAN script to generate a database backup without a recovery catalog or with a recovery catalog. You can set the autocontrolfile autobackup feature during configuration so the backup controlfile is used as the catalog to avoid putting creating a separate RMAN database to use its catalog.

connect target;
run {
shutdown immediate;
startup mount pfile=’/opt/app/oracle/admin/ORACLE_SID/pfile/initORCLSID.ora’;
backup incremental level 0 database format ‘/opt/app/oracle/oradata/ORCLSID/backup/%d_bckup_%U’ tag=”closed_bkup”;
shutdown;
startup pfile=’/opt/app/oracle/admin/ORACLE_SID/pfile/initORCLSID.ora’;
}
exit

RMAN> list summary;
RMAN> list backup summary;
RMAN> list backup by file;

If you use for example 2 channels for your backup you’ll see 2 backupsets in the earlier query if you run that query again because RMAN will split the backup across 2 channels which means there will be 2 backupsets created plus there will be a 3rd controlfile backup that will be generated by the CONTROLFILE AUTOBACKUP feature.

A controlfile autobackup will generate a backup controlfile for each of the following commands if they are executed:

BACKUP DATABASE;
BACKUP TABLESPACE;
BACKUP DATAFILE;
BACKUP ARCHIVELOG;

To determine which datafiles need a backup execute the following command:

RMAN> report need backup;

To check and see if any RMAN Backupsets are obsolete and can be removed (deleted), important if you are generating disk backupsets and you don’t have unlimited disk space available to you.

RMAN> report obsolete;

SQL> select recid, stamp, completion_time, incremental_level from v$backup_set;

RECID STAMP COMPLETION_TIME INCREMENTAL_LEVEL
———- ———- ————— —————–
74 669457740 30-OCT-08

118 669647764 01-NOV-08 0
119 669647775 01-NOV-08

column handle format a32
column tag format a18
select recid, set_stamp, tag, status, handle
from v$backup_piece
order by set_stamp
/

RECID SET_STAMP TAG STA HANDLE
———- ———- —————— — ——————————–
93 669465816 TAG20081030T104336 A +PS90HR_DISK3/ps90hrqa/autobacku
p/c-2291650026-20081030-03

94 669501607 TAG20081030T204007 A /dbbackup/PS90HRQA/al_t669501607
_s84_p1

95 669501610 TAG20081030T204010 A +PS90HR_DISK3/ps90hrqa/autobacku
p/c-2291650026-20081030-04

96 669502225 TAG20081030T205024 A +PS90HR_DISK2/ps90hrqa/backupset
/2008_10_30/nnsnf0_tag20081030t2
05024_0.572.669505825

97 669502227 TAG20081030T205027 A +PS90HR_DISK3/ps90hrqa/autobacku
p/c-2291650026-20081030-05

100 669502244 PS90HRQA A /opt/app/oracle/admin/backup/PS9
0HRQA/backupsets/df_t669502244_s
88_p1

101 669502244 PS90HRQA A /opt/app/oracle/admin/backup/PS9
0HRQA/backupsets/df_t669502244_s
88_p2

98 669502245 PS90HRQA A /opt/app/oracle/admin/backup/PS9
0HRQA/backupsets/df_t669502245_s
89_p1

Recover Database Using an Autobackup of the Controlfile without a Recovery Catalog

Set the NLS_LANG environment variable to its proper setting depending on the values you created your database with. Example:

export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P15

sqlplus> startup nomount;

Start RMAN but do not connect to the target database.

$ rman
RMAN>

Set the database identifier for the target database with the SET DBID command. RMAN displays the DBID whenever you connect to the target. You can also get it by running LIST or by querying the catalog.

Recovery Manager: Release 11.1.0.6.0 – Production on Sat Nov 1 20:57:08 2008

Copyright (c) 1982, 2007, Oracle. All rights reserved.

connected to target database: PS90HRDV (DBID=2173713801)

RMAN> SET DBID 2173713801;

You can use log files to determine the DBID also, every time RMAN connects to the database the DBID is displayed as shown above, if the database is open or mounted.

Connect to the target database:

RMAN> CONNECT TARGET;

Restore the backup controlfile, then perform the recovery by carrying out the following steps:

Optionally, specify the most recent backup time stamp that RMAN can use when searching for a controlfile autobackup to restore.

If a non-default format was used to create the control file, then specify a non-default format for the restore of the control file.

If the channel that created the control file autobackup was device type sbt (tape), then you must allocate one or more sbt (tape) channels. Because you don’t have a repository available you can’t use the automatic channels. If the autobackup was created on a disk channel, however, then you do not need to manually allocate a disk channel.

Restore the autobackup of the control file, optionally set the maximum number of days backward that RMAN can search (up to 366) and the initial sequence number that is should use in its search for the first day.

Mount the database, and because the repository is now available any automatic channels that you configured are now also available.

If the online logs are inaccessible, then restore and recover the database as described in the incomplete restore and recovery post. You must first terminate recovery by setting the UNTIL clause to a time, log sequence number or SCN before the online redo logs are processes. If the online logs are useable, then restore and recover the database as described in the complete restore and recovery post.

In the following example, the online redo logs have been lost. This example limits the restore of the control file autobackup, then performs the recovery of the database to log sequence 13456, which is the most recent archived log:

run {
set controlfile autobackup format for device type disk to ‘/opt/app/oracle/oradata/ORCLSID/backup/%F’;
allocate channel d1 device type disk;
restore controlfile from autobackup
maxseq 5 # start at sequence 5 and count down
maxdays 5; # start at UNTIL TIME and search back 5 days
mount database;
}

RMAN> run {
restore database;
recover database;
alter database open resetlogs;
}

Backup the database after resetlogs.

Comments