Oracle 视图 V$SERV_MOD_ACT_STATS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$SERV_MOD_ACT_STATS视图记录从功能模块被激活到服务进程终止的每一次服务请求的统计信息。它记录各项活动的起始和结束时间,活动的名字,响应时间以及服务的负载请求量等信息。
它的用途是用于查看服务请求的统计信息,从而可以观察服务器性能的变化。
可以使用下面的语句来返回V$SERV_MOD_ACT_STATS视图的数据:
select * from v$serv_mod_act_stats;
官方英文解释
V$SERV_MOD_ACT_STATS displays the same set of performance statistics as V$SERVICE_STATS except for a specific combination of service/module/action names.
When aggregation is enabled for the service name, module, and action name, then this view provides the timing and work done for calls issued for the business transaction.
| Column | Datatype | Description |
|---|---|---|
|
|
|
Aggregation statistic type:
|
|
|
|
Service name from |
|
|
|
Module name from |
|
|
|
Action name from |
|
|
|
Statistic identifier |
|
|
|
Derived statistic name from |
|
|
|
Cumulative value (in microseconds) |
|
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
-
“V$SERVICE_STATS”
-
“V$STATNAME”
-
“V$SESS_TIME_MODEL”