下面SQL程序段可以Oracle 识别IO 竞争和负载平衡,基本可以判断系统I/O问题。
- select df.name 文件名,
- fs.phyrds 读次数,
- fs.phywrts 写次数,
- (fs.readtim / decode(fs.phyrds, 0, -1, fs.phyrds)) 读时间,
- (fs.writetim / decode(fs.phywrts, 0, -1, fs.phywrts)) 写时间
- from v$datafile df, v$filestat fs
- where df.file# = fs.file#
- order by df.name
|
MySQL 主从复制,只复制单库时无法复制在其他库上的执行的写入操作Oracle 学习动态性能表相关资讯 oracle数据库教程
- Oracle raw数据类型介绍 (01/29/2013 10:05:53)
- 监听器注册与ORA-12514 错误分析 (11/13/2012 14:30:08)
- Oracle SQL的cursor理解 (11/13/2012 14:16:17)
| - Oracle 如何强制刷新Buffer Cache (01/29/2013 10:02:46)
- dblink致Oracle库的SCN变成两库的 (11/13/2012 14:24:41)
- Linux操作系统下完全删除Oracle数 (11/13/2012 08:25:52)
|
本文评论 查看全部评论 (0)