How to manage Standby Redo Logs (SRL) in Standby Database
Standby Redo Logs (SRL) is similar to Online Redo Log (ORL) and only difference between two is that Standby Redo Log is used to store redo data received from another database (primary database).Standby Redo Logs are only used if have the LGWR as transport mode to Remote Standby Database. Q. How to check using Real-Time Apply ? SQL> SELECT DEST_ID, RECOVERY_MODE FROM V$ARCHIVE_DEST_STATUS; Q. How to identify standby redo logs ? SQL> select * from v$standby_log; Q. How to check members of standby redo log file SQL> select * from v$logfile where type=’STANDBY’; Q. How to add Standby Redo Log File to a Specific Group Number SQL> alter database add standby logfile group 6 ( '/<full path for srl>/log06a.dbf', '/<full path for srl>/log06b.dbf' ) size 250m; Following are the steps to drop and create new standby database: 1. Check Primary Redo Thread Number and size. SELECT thread#, group#, sequence#, bytes, archived ,status FROM v$log ORDER BY thread#,