Oracle 视图 V$CON_SYSMETRIC_HISTORY 官方解释,作用,如何使用详细说明
本站中文解释
V$CON_SYSMETRIC_HISTORY视图存储由Oracle Enterprise Manager获取的系统度量历史记录。它可以帮助数据库管理员了解以下内容:
1. 什么时候发生需要改变参数的错误;
2. 哪些资源使用多少;
3. 服务器上运行了多长时间;
4. 平均活动会话数和网络流量;
5. 数据库物理和逻辑结构的变化;
6. 资源监控例程的实施和运行质量。
要使用V$CON_SYSMETRIC_HISTORY视图,用户可以使用SELECT语句来检索所需的记录:
SELECT * FROM V$CON_SYSMETRIC_HISTORY;
用户还可以使用WHERE子句为搜索提供更深入的条件,以确定特定的资源使用情况:
SELECT resource_name, uptime_metric_value
FROM V$CON_SYSMETRIC_HISTORY
WHERE resource_name = ‘Database Uptime’;
官方英文解释
V$CON_SYSMETRIC_HISTORY
displays all PDB long duration (60-second with 1 hour history) system metric values available in the database.
Column | Datatype | Description |
---|---|---|
|
|
Begin time of the interval |
|
|
End time of the interval |
|
|
Interval size (in hundredths of a second) |
|
|
Metric group ID |
|
|
Metric ID |
|
|
Metric name |
|
|
Metric value |
|
|
Metric unit description |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
-
“DBA_HIST_CON_SYSMETRIC_HIST”
-
“DBA_HIST_SYSMETRIC_HISTORY”
-
“V$SYSMETRIC_HISTORY”