温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Oracle通过视图和告警日志检查主库,物理和快照备库

发布时间:2020-07-25 10:06:32 来源:网络 阅读:559 作者:onlinekof2001 栏目:关系型数据库
主库动作主库信息备库信息
是否启用redo线程

alert log

v$thread

alert log

展示数据库角色,保护模式,保护级别,切换状态,快速启用,失效转换信息v$databasev$database
增删redo日志文件组

alert log

v$log

v$logfile的status字段

alert log
控制文件的创建

alert log

alert log

表空间状态的改变

v$recover_file

dba_tablespace

alert log

v$recover_file

dba_tablespace

增删数据文件或表空间

dba_data_files

alert log

v$datafile

alert log

重命名数据文件

v$datafile

alert log

v$datafile

alert log

未记录日志或未恢复的操作

v$datafile

v$database

alert log

监控redo传输

v$archive_dest_status

v$archived_log

v$archived_dest

alert log

v$archived_log

alert log

 

发布open resetlogs 或 clear unarchived logfiles 语句

alert log

alert log

 

修改初始化参数

alert log

alert log

 

 

通过以下语句获取主备库的当前角色,保护模式,保护级别,切换状态,快速启用,失效转换信息

select protection_mode,

       protection_level,

       database_role role,

       switchover_status

  from v$database;

获取fast-start 失效切换状态

select fs_failover_status           "fsfo status",

       fs_failover_current_target   target,

       fs_failover_threshold        threshold,

       fs_failover_observer_present "observer present"

  from v$database;

获取物理备库上的redo应用和传输状态

select process, status, thread#, sequence#, block#, blocks

  from v$managed_standby;

查询归档日志文件的信息和历史归档信息

select thread#, sequence#, first_change#, next_change#

   from v$archived_log;

select thread#, sequence#, first_change#, next_change# from v$log_history;

查看被写入alert log中关于DG的事件信息

select message from v$dataguard_status

查看主库redo日志传输到目标端的状态,SCN表示最后一个在standby库上应用的redo日志的系统改变号。

select dest_id, applied_scn from v$archive_dest where target='standby';

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI