Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Recovery - Complete Recovery

Back


Restore Command

RMAN Command Action
RESTORE PREVIEW reports the backups and archived redo log files uesd to restore
RESTORE VALIDATE determines and validate backup, copies, and archived redo log to restore
RECOVER VALIDATE HEADER Reports and validates the backups to restore for the recovery

Restore Points

-- creates a restore point that represents the present point in time.
CREATE RESTORE POINT before_mods;

-- creates a restore point representing a past SCN, 100
CREATE RESTORE POINT end_ql AS OF SCN 100;