Hello,
I use the following SQL to determine how often a Redo Log Switch occurs:
Can someone recommend SQL that takes this a step further and actually determines the average log switch interval time for the last n hours (say 24)?
I have a hunch some of you guys already do something like this.
Thanks,
JT
I use the following SQL to determine how often a Redo Log Switch occurs:
Code:
SELECT group#,status,first_time FROM v\$log ORDER BY group#;
Can someone recommend SQL that takes this a step further and actually determines the average log switch interval time for the last n hours (say 24)?
I have a hunch some of you guys already do something like this.
Thanks,
JT