Oracle 视图 V$IOFUNCMETRIC_HISTORY 官方解释,作用,如何使用详细说明

本站中文解释

V$IOFUNCMETRIC_HISTORY视图是V$IOSTATMETRIC_HISTORY视图的扩展,它准确地记录了文件I/O操作中每个函数的次数,任务总时间,和平均每个函数执行的时间,统计以请求为单位。

使用V$IOFUNCMETRIC_HISTORY视图可以确定在I/O上运行的时间,来检查哪个程序使用最多的I/O资源。它可以用来检查Oracle进程索取I/O的活动和性能,以及得到哪个文件使用较多的I/O流量。

方法:
1、 执行跟踪I/O活动:

SQL> ALTER session SET events ‘immediate trace name iofuncmeter level 5’;

2、 查看活动详细信息:

SQL>SELECT * FROM V$IOFUNCMETRIC_HISTORY;

该查询将显示每个I/O函数所消耗的时间,从开始和结束时间可以识别出I/O操作的总时间。

3、 停止跟踪I/O活动:

SQL>ALTER session SET events ‘immediate trace name iofuncmeter level 0’;

官方英文解释

V$IOFUNCMETRIC_HISTORY displays a recent history of the I/O statistics information by database function for the most recent time interval period.

The columns for V$IOFUNCMETRIC_HISTORY are the same as those for V$IOFUNCMETRIC.

See Also:

“V$IOFUNCMETRIC”


数据运维技术 » Oracle 视图 V$IOFUNCMETRIC_HISTORY 官方解释,作用,如何使用详细说明