Hi
i would like to make a dev env (content identical to test env).
Test env (source):
Is a physical standby. Backups of the test db are registered in recovery catalog.
Data located on shared ASM storage, backups also on shared storage (non-ASM).
Dev env (destination):
I cloned the db home from soruce to dest.
Installed an empty single instance db with the desired database name, data on local storage (/u01/oradata/dev_db_name).
Registered the db in recovery catalog.
What would be the best approuch from here to get the test db content (datafiles and so on..) into dev db? Copy backup files to dest and do the recovery for empty db?
Should i just do RMAN recovery? Will there be any problems with already inplace db_name on dev or with the different file system structure?
Any sketchy guide/basic steps appreciated.