On single instance logical standby database of a 3 node RAC primary database, how can I resize the o
On single instance logical standby database of a 3 node RAC primary database, how can I resize the online redo log files of thread 2 and 3 that marked with status 'ACTIVE'.
Its not possible to switch these log files from ACTIVE to another status, to be able to resize these files after using "ALTER SYSTEM SWITCH LOGFILE;" or "ALTER SYSTEM ARCHIVE LOG CURRENT;"
SQL> select l.GROUP#, l.THREAD#, t.MEMBER, l.STATUS, l.bytes
2 from v$log l,
3 v$logfile t
4 where l.GROUP# = t.GROUP#
5 --and t.TYPE = 'ONLINE'
6 order by t.GROUP#, t.MEMBER;
GROUP# THREAD# MEMBER STATUS BYTES