Dear buddies,
I am backing up with RMAN
Level 0 backup on Sundays and Level 1 backup on weekdays
Now, I want to recreate this database on another server.
Is it possible? I do not want to do duplicate or cloning.
Any suggestions?
What do we call this kind of recovery?
Should I be doing something like this?
Make a full backup all of current your database files instead of using the Level 0 or Level 1 backups.
Place all database files to same directories.
Create the Windows service if removed.
C:\> oradim.exe -new -sid <ORACLE_SID> -startmode -manual
Startup instance.
C:\> net start OracleService<ORACLE_SID>
C:\> sqlplus /nolog
SQL> connect / as sysdba
Thanks!