0% found this document useful (0 votes)
107 views3 pages

How To Validate A Backup: 1. Validating A Logical Export (Taken Using Exp Utility)

To validate backups, one can import logical exports without errors, verify .dbf files using DBVERIFY, or use RMAN commands like RECOVER DATABASE VALIDATE or VALIDATE BACKUPSET to check for errors without performing a full recovery.

Uploaded by

oracledba8
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
107 views3 pages

How To Validate A Backup: 1. Validating A Logical Export (Taken Using Exp Utility)

To validate backups, one can import logical exports without errors, verify .dbf files using DBVERIFY, or use RMAN commands like RECOVER DATABASE VALIDATE or VALIDATE BACKUPSET to check for errors without performing a full recovery.

Uploaded by

oracledba8
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

How to validate a backup

1. Validating a logical export (taken using exp utility) First we have to take a look to the export log file. Also, we can import the data in another database to see if the import is done without errors.

2. Validate a physical backup (taken using RMAN "image copy" option or by copying the files at the OS level) In this case we have to validate the .dbf files. This is done by using DBVERIFY Utility.

Total Pages Examined: Number of blocks in the file Total Pages Processed: Number of blocks verified Total Pages Failing: Number of blocks that failed the data/ index/ segment block check Total Pages Marked Corrupt: Number of corrupted blocks Total Pages Influx: Number of blocks being read and written to in parallel.

3. Validating a RMAN backup (using the Backup Sets) a) RMAN> RECOVER DATABASE VALIDATE;

If there are no errors during the recovery ... validate, the backup is good. This command (recovery database validate) doesn't recover the database; only the check is done.

b) RMAN> VALIDATE BACKUPSET <backupset_nr>

To find the backup set of the backups we can run the RMAN command
LIST BACKUP;

c) using RMAN report options, like REPORT UNRECOVERABLE DATABASE; (examine all datafiles, but not the archivelog files !!!)

You might also like