Create database from backups of production database, but in another server
I have a production database in server 1.
Full backups are taken each day at 2:00 am. This full backups include the controlfile.
This is the script for the full database backup:
backup
check logical
database tag='TAG${TAG_FULL}'
filesperset 1
current controlfile tag='TAG$(TAG_CTL)';
Archive log files are backed up each hour and thirty minutes.
Now I want to create a new database on server2 using existing backups from the production database.
Server1 and Server2 have ASM.
What steps do I need to take in order to create the database on server2 using ASM? Do I need to move the backups from ASM server1 to ASM on server2?
Full backups are taken each day at 2:00 am. This full backups include the controlfile.
This is the script for the full database backup:
backup
check logical
database tag='TAG${TAG_FULL}'
filesperset 1
current controlfile tag='TAG$(TAG_CTL)';
Archive log files are backed up each hour and thirty minutes.
Now I want to create a new database on server2 using existing backups from the production database.
Server1 and Server2 have ASM.
What steps do I need to take in order to create the database on server2 using ASM? Do I need to move the backups from ASM server1 to ASM on server2?
0