Hopefully this is a simple question but basically I'd like to muliplex the redo logs
I have this setup
- Code: Select all
GROUP# THREAD# SEQUENCE# Size in MB MEMBERS ARCHIVED STATUS
---------- ---------- ---------- ---------- ---------- ---------- -------------- --
1 1 7 50 1 YES INACTIVE
2 1 8 50 1 NO CURRENT
3 2 5 50 1 NO CURRENT
4 2 4 50 1 YES ACTIVE
GROUP# STATUS TYPE MEMBER
---------- ------- ------- ------------------------------------------------------------
2 ONLINE +DATA/cdrprod/redo02.log
1 ONLINE +DATA/cdrprod/redo01.log
3 ONLINE +DATA/cdrprod/redo03.log
4 ONLINE +DATA/cdrprod/redo04.log
I have 2 ASM disk groups +DATA and +BACKUP
If I do the following will the redo's then be multiplexed?
- Code: Select all
alter database add logfile member '+BACKUP/cdrprod/redo01b.log' to group 1;
alter database add logfile member '+BACKUP/cdrprod/redo02b.log' to group 2;
alter database add logfile member '+BACKUP/cdrprod/redo03b.log' to group 3;
alter database add logfile member '+BACKUP/cdrprod/redo04b.log' to group 4;
I'd like to get this right, before I get in a state with number of threads and groups etc...
Currently I see 4 groups for 2 threads (instances) which is correct and both databases restart without any redo warning messages
Many thanks
Jnrpeardba