Verify the validity of RMAN backup
1. restore preview command
This command is used to check which backup set is used for restoration to perform specific restoration.
Restore database preview;
2. Use the restore command of the validate and check logical parameters to check the backup set to ensure that the database is recoverable.
Restore database validate;
You can use the check logical parameter to fully check the latest backup set.
Run
{
Restore database check logical validate;
}
3. Use the validate backupset command
The restore command with the validate parameter or check logical parameter can only check the latest backup set. to check any backup set, use the validate backupset command.
Check the backup set key)
List backupset;
Check again
Validate backupset 141;
Or
Validate backupset 141 check logical;
Recommended reading:
RMAN: Configure an archive log deletion policy
Basic Oracle tutorial-copying a database through RMAN
Reference for RMAN backup policy formulation
RMAN backup learning notes
Oracle Database Backup encryption RMAN Encryption