Oracle 视图 V$SERVICE_REGION_METRIC 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$SERVICE_REGION_METRIC用于提供有关服务区域性能度量统计信息,如大致服务时间、客户服务时间、服务等级,以及服务期间的用户、构建和操作数。它提供有关操作、模块等的选定选项,以便快速查找所需的服务区域性能度量统计信息。
使用方法:
1、如果您想查看一段特定时间内特定服务区域的性能度量统计信息,可以使用如下查询:
SELECT *
FROM v$service_region_metric
WHERE ENTRY_TIME >=
AND ENTRY_TIME
AND SERVICE_REGION_ID = ;
2、如果您想查看服务区域特定服务等级特定期间内的性能度量统计信息,可以使用如下查询:
SELECT *
FROM v$service_region_metric
WHERE ENTRY_TIME >=
AND ENTRY_TIME
AND SERVICE_REGION_ID =
AND SERVICE_LEVEL = ;
官方英文解释
V$SERVICE_REGION_METRIC
displays the metric values captured for the most recent 30-second intervals for the workload against each service region available on the database.
Column | Datatype | Description |
---|---|---|
|
|
Begin time of the interval |
|
|
End time of the interval |
|
|
Interval size (in hundredths of a second) |
|
|
Service number (internal) |
|
|
Network name for the service |
|
|
Region name |
|
|
Number of user calls per second to the services |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
-
“V$CHUNK_METRIC”