RM script to recover database from backup in a different host
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.