Oracle查看每小时日志切换量脚本
Posted ClarkYu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle查看每小时日志切换量脚本相关的知识,希望对你有一定的参考价值。
--
-- Show the Number of Redo Log Switches Per Hour
--
SET PAUSE ON
SET PAUSE ‘Press Return to Continue‘
SET PAGESIZE 60
SET LINESIZE 300
SELECT to_char(first_time, ‘yyyy - mm - dd‘) aday,
to_char(first_time, ‘hh24‘) hour,
count(*) total
FROM v$log_history
WHERE thread#=&EnterThreadId
GROUP BY to_char(first_time, ‘yyyy - mm - dd‘),
to_char(first_time, ‘hh24‘)
ORDER BY to_char(first_time, ‘yyyy - mm - dd‘),
to_char(first_time, ‘hh24‘) asc
/
http://www.oracle-wiki.net/startsql
https://www.dba-scripts.com/
这里有很多有意思的脚本。
以上是关于Oracle查看每小时日志切换量脚本的主要内容,如果未能解决你的问题,请参考以下文章
Oracle SQL 语句:查看 redo log 每小时切换次数