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

本站中文解释

Oracle视图DBA_HIST_IOSTAT_FILETYPE_NAME提供了归档视图v$filestat提供的I/O信息的近期变化的跟踪统计。其内容集中在文件的类型上,如数据文件和日志文件。该视图涵盖了dbid、snap_id、instance_number、file_type_id、file_type_name等重要信息。结果可以被根据类型和周期分组、排序、汇总来分析查看特定类型文件的I/O情况。

要使用DBA_HIST_IOSTAT_FILETYPE_NAME视图,一般可以使用以下SQL:
SELECT * FROM dba_hist_iostat_filetype_name WHERE file_type_name='[文件类型]’ ORDER BY snap_id;
可以根据不同的文件类型查询,视图提供的相应类型文件I/O的变化细节,比如可以查询近期数据文件的I/O变化情况,以及某类文件的I/O变化是否处于适当的水位等。

官方英文解释

DBA_HIST_IOSTAT_FILETYPE_NAME displays historical I/O statistics for file type names.

This view contains snapshots of V$IOSTAT_FILE.

Column Datatype NULL Description

DBID

NUMBER

NOT NULL

Database ID for the snapshot

FILETYPE_ID

NUMBER

NOT NULL

Type of file (for example, log file, data file, and so on)

FILETYPE_NAME

VARCHAR2(30)

NOT NULL

Name of the file, in the case of a data file or temp file. For all other files, a corresponding string to be displayed (for example, ARCHIVELOG).

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_FILE”


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