Backup questions
Hello,
I'm fighting with databa backup. My goal is to have whole database online backup, what let me recover database to any time in last 5 days. Obsolote backups - older than 5 days should be automaticaly deleted.
After some reading around I have found some modified scripts from oracle suggested backup strategy.
Here is the script:
$rman_script="run { allocate channel oem_disk_backup device type disk; recover copy of database with tag 'ORA_OEM_LEVEL_0' until time 'sysdate - 5'; backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA_OEM_LEVEL_0' database; } ";
My questions:
1.Can this script cover my goal?
I'm fighting with databa backup. My goal is to have whole database online backup, what let me recover database to any time in last 5 days. Obsolote backups - older than 5 days should be automaticaly deleted.
After some reading around I have found some modified scripts from oracle suggested backup strategy.
Here is the script:
$rman_script="run { allocate channel oem_disk_backup device type disk; recover copy of database with tag 'ORA_OEM_LEVEL_0' until time 'sysdate - 5'; backup incremental level 1 cumulative copies=1 for recover of copy with tag 'ORA_OEM_LEVEL_0' database; } ";
My questions:
1.Can this script cover my goal?
0