Target Database RMAN Backup

List the steps required to enable the RMAN backup for a target database?

Questions by shanthiavari

Showing Answers 1 - 3 of 3 Answers

naveen_rc

  • Aug 6th, 2009
 

1. $ rman target /


2. Configure the persistent parameter of RMAN eg :


 


RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 15 DAYS;

old RMAN configuration parameters:
CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 2 DAYS;
new RMAN configuration parameters:
CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 15 DAYS;
new RMAN configuration parameters are successfully store


3. Script to take backup


RMAN> run {
     BACKUP DATABASE PLUS ARCHIVELOG DELETE INPUT;
     DELETE NOPROMPT OBSOLETE;
     CROSSCHECK BACKUP;
    }

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions