RMAN basis restore question ..
This is a basic RMAN restore question ..
We do a Full backup every night around 12:00 am via RMAN.
.
If the next day around 2:00 pm we would like to restore the previous night Full backup and not apply any of the archives/redo, so that the DB would only contain the data from last night's backup, is this the proper steps ?
.
ex:
RMAN> shutdown immediate;
RMAN> startup nomount;
RMAN> restore controlfile from ‘/u2/orabackup/rman/backup/cf_c-505632673-20161222-00’;
RMAN> alter database mount;
RMAN> restore database;
RMAN> alter database open resetlogs;
.
Also I assume the Restore will overwrite all existing Oracle datafile ?