Oracle Redo日志相关的视图学习
在线重做日志 vs 备库重做日志
检查数据库的在线重做日志(Online Redo Log)和备库重做日志(Standby Redo Log):
set lines 300
col next_change# for 99999999999999999999
col member for a80
--查看所有的REDO日志文件(在线redo日志、备库redo日志、快速恢复区的日志副本)
select group#,status,type,member,IS_RECOVERY_DEST_FILE from v$logfile order by 5,1;
--查看在线Redo日志信息