DB: 11.2.0.3.0

查看Oracle的redo日志切换频率


两条SQL,原理是一样的,第二个用到了统计函数

时间单位:分钟

方法一、 
select * from v$log a where a.THREAD# = 1 ;
 
set line 200
select b.SEQUENCE#, b.FIRST_TIME,a.SEQUENCE#,a.FIRST_TIME,round(((a.FIRST_TIME-b.FIRST_TIME)*24)*60,2) from v$log_history a, v$log_history b where a.SEQUENCE#=b.SEQUENCE#+1 and b.THREAD#=1 order by a.SEQUENCE# desc;
   

方法二、

set line 200
select sequence#,first_time,nexttime,round(((first_time-nexttime)*24)*60,2) diff from (select sequence#,first_time,lag(first_time) over(order by sequence#) nexttime from v$log_history where thread#=1) order by sequence# desc;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-23
  • 2021-05-29
  • 2021-12-03
  • 2021-09-30
  • 2022-12-23
猜你喜欢
  • 2021-09-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
  • 2021-11-10
相关资源
相似解决方案