Multiplex OMF controlfile
Initially, I had configured OMF using following parameter.
db_create_file_dest string \app\oradata
Controlfile for the database is created as :
SQL> select name from v$controlfile;
NAME
---------------------------------------------------------------
\APP\ORADATA\TESTOMF\CONTROLFILE\O1_MF_70LKM2TC_.CTL
Then I added following parameter to the database :
db_create_online_log_dest_1 string C:\app\oradata
How to I multiplex the controlfile to be created on db_create_online_log_dest_1 now?
db_create_file_dest string \app\oradata
Controlfile for the database is created as :
SQL> select name from v$controlfile;
NAME
---------------------------------------------------------------
\APP\ORADATA\TESTOMF\CONTROLFILE\O1_MF_70LKM2TC_.CTL
Then I added following parameter to the database :
db_create_online_log_dest_1 string C:\app\oradata
How to I multiplex the controlfile to be created on db_create_online_log_dest_1 now?
0