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

本站中文解释

Oracle视图DBA_HIST_IOSTAT_FUNCTION_NAME是基于AWR收集数据库每小时,每分钟,每秒,每间隔输入输出时刻请求和操作信息统计出来的一个包含I/O性能函数名称的视图。它能够提供系统和用户空间的I/O使用情况及被使用的函数的总次数,模式命中的次数及模式未命中的次数,同步读的次数及同步写的次数,缓存读的次数及缓存写的次数,排序库读的次数及库写的次数等。

要使用Oracle视图DBA_HIST_IOSTAT_FUNCTION_NAME,应首先选择相应的时间段(每小时,每分钟,每秒,每间隔)来进行查询,然后查询出DBA_HIST_IOSTAT_FUNCTION_NAME视图中包含I/O性能函数名称,以及模式命中的次数,模式未命中的次数,同步读的次数,同步写的次数,缓存读的次数,缓存写的次数,排序库读的次数,库写的次数等信息。

官方英文解释

DBA_HIST_IOSTAT_FUNCTION_NAME displays historical I/O statistics by function names.

This view contains snapshots of V$IOSTAT_FUNCTION.

Column Datatype NULL Description

DBID

NUMBER

NOT NULL

Database ID for the snapshot

FUNCTION_ID

NUMBER

NOT NULL

Function ID

FUNCTION_NAME

VARCHAR2(128)

NOT NULL

Function name

CON_DBID

NUMBER

The database ID of the PDB for the sampled session

CON_ID

NUMBER

The ID of the container that CON_DBID identifies. Possible values include:

  • 0: This value is used for rows containing data that pertain to the entire CDB. This value is also used for rows in non-CDBs.

  • 1: This value is used for rows containing data that pertain to only the root

  • n: Where n is the applicable container ID for the rows containing data

See Also:

“V$IOSTAT_FUNCTION”


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