RMAN: restore
I took a full backup by shutting down the database and start it up in mount phase. Then ran the backup. I believe this would be a cold backup since the database was not opened.
What is the correct procedure for restoring database from a cold backup?
would it be:
- SQL> STARTUP NOMOUNT;
- CONNECT TO RMAN
- RMAN> RESTORE CONTROLFILE FROM "F:\APP\PATCARE\BACKUPSET\2021_07_15\O1_MF_NCNNF_TAG20210715T110050_JH0Q0M9J_.BKP";
- RMAN> RESTORE DATABASE;
- RMAN> ALTER DATABASE OPEN resetlogs;
Why not run: recover databse after running restore database?