Tips – RMAN Restore Preview
The PREVIEW
option of the RESTORE
command allows you to identify the backups required to complete a specific restore operation. The output generated by the command is in the same format as the LIST
command. In addition the PREVIEW SUMMARY
command can be used to produce a summary report with the same format as the LIST SUMMARY
command. The following examples show how these commands are used:
# Preview RESTORE DATABASE PREVIEW; RESTORE TABLESPACE users PREVIEW; # Preview Summary RESTORE DATABASE PREVIEW SUMMARY; RESTORE TABLESPACE users PREVIEW SUMMARY;
Leave a Comment