Oracle 视图 DBA_HIST_FILEMETRIC_HISTORY 官方解释,作用,如何使用详细说明
本站中文解释
Oracle 视图 DBA_HIST_FILEMETRIC_HISTORY 用于查询和测量仪表盘文件的历史度量标准。它提供对历史文件特定度量按时间顺序排序的快速访问。
使用 DBA_HIST_FILEMETRIC_HISTORY 视图时,需要指定 PASSWORD_VERSIONS、PRODUCT_ID 或 FILE_TYPE 来限制 SQL查询的范围,以获取相应的度量值。例如,要查询所有 TM_XML 文件的所有度量标准的历史值,可以运行以下 SQL 语句:
SELECT *
FROM DBA_HIST_FILEMETRIC_HISTORY
WHERE PASSWORD_VERSION = ‘TM_XML’
ORDER BY TIMESTAMP;
官方英文解释
DBA_HIST_FILEMETRIC_HISTORY
displays the history of file metrics collected in the Workload Repository.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Unique snapshot ID |
|
|
|
Database ID for the snapshot |
|
|
|
Instance number for the snapshot |
|
|
|
File number |
|
|
|
File creation time |
|
|
|
Begin time of the interval |
|
|
|
End time of the interval |
|
|
|
Interval size (in hundredths of a second) |
|
|
|
ID of the group to which the file belongs |
|
|
|
Average file read time |
|
|
|
Average file write time |
|
|
|
Number of physical reads |
|
|
|
Number of physical writes |
|
|
|
Number of physical block reads |
|
|
|
Number of physical block writes |
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|