Database Backup and Recovery (MOSC)

MOSC Banner

RM script to recover database from backup in a different host

edited Dec 13, 2012 10:07AM in Database Backup and Recovery (MOSC) 5 commentsAnswered
Recently, I was successful in launching a new daily backup(Mon-Fri) using RMAN scrip.  The RMAN script is the following:

 

run {

    allocate channel ch1 type

    disk format='f:\FullBackup\temp\ICMSTEST_backup_%U';

    backup database plus archivelog delete input;

    release channel ch1;

    }

    exit;

 

 

 

I am very happy with this setting, and the database is also duplexing the archive on a secondary location where all archived logs files will be kept until I manually delete them, which I don't plan to.  So, every week, I will have 5 complete backups.  The control files should be included in the backup as I configured it.

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center