RMAN Restores
From Oracle FAQ
RMAN can be used to restore Oracle databases.
[edit] Point in time restores
Using the SET UNTIL TIME command to prevent RMAN from restoring a too-recent version of the controlfile. For example:
run {
2> set until time 'sysdate-1/24' ;
3> allocate channel d1 type disk;
4> restore controlfile;}
[edit] Also see
- RMAN, info about the RMAN utility.
- Oracle database Backup and Recovery FAQ
