Oracle 视图 V$SHARED_SERVER_STAT 官方解释,作用,如何使用详细说明
本站中文解释
操作
Oracle视图V$SHARED_SERVER_STAT提供了当前共享服务器状态的实时信息,帮助用户确定共享服务器的工作情况。
此视图显示了当前活动的服务器进程所执行的工作的类型及其的任务的数量,可以从中获知连接服务器的工作量有多大以及连接服务器是否安装正确。
如果发现数据库中存在大量空闲连接服务器,视图V$SHARED_SERVER_STAT中会显示大量wait状态的线程,这意味着负荷不足,此时可以考虑减少连接服务器的数量。
另外,如果发现连接服务器在较长时间内处于busy状态,可以适当增加共享服务器的数量来改善性能。
使用方法:
SELECT * FROM V$SHARED_SERVER_STAT;
该查询操作可以用来查看当前所有的共享服务器进程的工作状态、连接服务器的负荷情况等。
官方英文解释
V$SHARED_SERVER_STAT
displays statistics for all shared server processes. The statistics are cumulative from the start of the instance.
Column | Datatype | Description |
---|---|---|
|
|
Number of messages processed |
|
|
Total number of bytes in all messages |
|
|
Total idle time (in hundredths of a second) |
|
|
Total busy time (in hundredths of a second) |
|
|
Total incoming network wait time (in hundredths of a second) |
|
|
Total outgoing network wait time (in hundredths of a second) |
|
|
Total number of requests taken from the common queue |
|
|
The ID of the container to which the data pertains. Possible values include:
|