By
Published: 10 Jul 2008
How would you restore a database using RMAN to Point in Time?
This question can easily be found in
this Oracle documentation.
The RMAN command to perform Point In Time Recovery (PITR) is:
RECOVER DATABASE
;
The
can take many forms as found
here.
You can recovery until a specific SCN, a specific log sequence, a restore point, or a specific time. To recover to a specific point in time, use:
RECOVER DATABASE UNTIL TIME "TO_DATE('12/01/07 13:15','MM/DD/YY HH24:MI')";
Dig Deeper on Oracle database administration
Oracle expert Brian Peasland answers one reader's question about common pitfalls when connecting Oracle to outside programs.
Continue Reading
One reader asks expert Brian Peasland a question about datafile sizes with the Oracle RMAN duplicate 10g command.
Continue Reading
Managing parent table-child table relations in Oracle SQL environments is key to efficient programming.
Continue Reading