Hello All,
I am using Oracle 11gR2 i created my DB using Oracle Managed files (OMF).
I wanted to re size my redo logs so i went into dropping old redo logs and create new one.
this how was my redo logs looks like. It was created with the DB creation with OMF format:
.../app/oradata/ORCL11/onlinelog/o1_mf_1_6pfncw81_.log
.../app/flash_recovery_area/ORCL11/onlinelog/o1_mf_1_6pfncx5z_.log
.../app/oradata/ORCL11/onlinelog/o1_mf_2_6pfncxps_.log
.../app/flash_recovery_area/ORCL11/onlinelog/o1_mf_2_6pfncz1v_.log
.../app/oradata/ORCL11/onlinelog/o1_mf_3_6pfnczhd_.log
.../app/flash_recovery_area/ORCL11/onlinelog/o1_mf_3_6pfnd0vw_.log
using the below script i created new redo logs
alter database add logfile group 1 (
'.../app/oradata/ORCL11/onlinelog/redo1.log',
'.../app/flash_recovery_area/ORCL11/onlinelog/redo1.log') size 76m reuse;
.........
and i added new redo log group
alter database add logfile group 4 (
'.../app/oradata/ORCL11/onlinelog/redo4.log',
'.../app/flash_recovery_area/ORCL11/onlinelog/redo4.log') size 76m reuse;
I was not able to create the redo logs where the name of the redo log file is :
o1_mf_1_6pfncw81_.log, since it is OMF format.
My question creating my redo logs in the way that did does it have any impact ? on archiving the redo logs ? any impact on the database since now it is not OMF?
How can i create my redo log files with OMF format ?
Regards,