Yes, thank you, it is now clear.
But if I have a RAC like that?
- Code: Select all
SQL> select max (bytes)/1024/1024 MB, count (1) from v$log;
MB COUNT(1)
---------- ----------
1024 4
SQL> select GROUP#, THREAD#, MEMBERS, ARCHIVED, STATUS from v$log;
GROUP# THREAD# MEMBERS ARC STATUS
---------- ---------- ---------- --- ----------------
1 1 2 YES INACTIVE
2 1 2 NO CURRENT
3 2 2 YES INACTIVE
4 2 2 NO CURRENT
I should do that?
alter database add standby logfile thread 1 group 6 '+dgfraelo/el_stby/standbylog/standby_group_06.log' size 1024M;
alter database add standby logfile thread 1 group 7 '+dgfraelo/el_stby/standbylog/standby_group_07.log' size 1024M;
alter database add standby logfile thread 1 group 8 '+dgfraelo/el_stby/standbylog/standby_group_08.log' size 1024M;
alter database add standby logfile thread 2 group 9 '+dgfraelo/el_stby/standbylog/standby_group_09.log' size 1024M;
alter database add standby logfile thread 2 group 10 '+dgfraelo/el_stby/standbylog/standby_group_10.log' size 1024M;
alter database add standby logfile thread 2 group 11 '+dgfraelo/el_stby/standbylog/standby_group_11.log' size 1024M;
Is it right?