1Z0-062 · Question #53
You use a recovery catalog for maintaining your database backups. You execute the following command: $rman TARGET / CATALOG rman / cat@catdb RMAN > BACKUP VALIDATE DATABASE ARCHIVELOG ALL; Which two s
The correct answer is B. Checks are performed for physical corruptions. D. Checks are performed to confirm whether all database files exist in correct locations. B (not C): You can validate that all database files and archived redo logs can be backed up by running a command as follows: RMAN> BACKUP VALIDATE DATABASE ARCHIVELOG ALL; This form of the command would check for physical corruption. To check for logical corruption, RMAN> BACKUP
Question
You use a recovery catalog for maintaining your database backups. You execute the following command:
$rman TARGET / CATALOG rman / cat@catdb RMAN > BACKUP VALIDATE DATABASE ARCHIVELOG ALL; Which two statements are true?
Options
- ACorrupted blocks, if any, are repaired.
- BChecks are performed for physical corruptions.
- CChecks are performed for logical corruptions.
- DChecks are performed to confirm whether all database files exist in correct locations
- EBackup sets containing both data files and archive logs are created.
How the community answered
(59 responses)- A3% (2)
- B73% (43)
- C10% (6)
- E14% (8)
Explanation
B (not C): You can validate that all database files and archived redo logs can be backed up by running a command as follows: RMAN> BACKUP VALIDATE DATABASE ARCHIVELOG ALL; This form of the command would check for physical corruption. To check for logical corruption, RMAN> BACKUP VALIDATE CHECK LOGICAL DATABASE ARCHIVELOG ALL; D: You can use the VALIDATE keyword of the BACKUP command to do the following: Check datafiles for physical and logical corruption Confirm that all database files exist and are in the correct locations. You can use the VALIDATE option of the BACKUP command to verify that database files exist and are in the correct locations (D), and have no physical or logical corruptions that would prevent RMAN from creating backups of them. When performing a BACKUP...VALIDATE, RMAN reads the files to be backed up in their entirety, as it would during a real backup. It does not, however, actually produce any backup sets or image copies (Not A, not E).
Topics
Community Discussion
No community discussion yet for this question.