Oracle 11gR1
V$SHARED_SERVER
displays information on the shared server processes.
Column | Datatype | Description |
|
| Name of the server |
|
| Server's process address |
|
| Server status:
|
|
| Number of messages processed |
|
| Total number of bytes in all messages |
|
| Number of breaks |
|
| Address of the circuit currently being serviced |
|
| Total idle time (in hundredths of a second) |
|
| Total busy time (in hundredths of a second) |
|
| Total number of requests taken from the common queue in this server's lifetime |
Note:
1.
select * from V$SHARED_SERVER;
NAME | PADDR | STATUS | MESSAGES | BYTES | BREAKS | CIRCUIT | IDLE | BUSY | REQUESTS |
S000 | 00000007B96EAE30 | WAIT(COMMON) | 0 | 0 | 0 | 00 | 380959378 | 0 | 0 |
2. The following views are useful for obtaining information about shared server configuration and for monitoring performance.
View | Description |
| Provides information on the dispatcher processes, including name, network address, status, various usage statistics, and index number. |
| Provides configuration information about the dispatchers. |
| Provides rate statistics for the dispatcher processes. |
| Contains information on the shared server message queues. |
| Contains information on the shared servers. |
| Contains information about virtual circuits, which are user connections to the database through dispatchers and servers. |
| Contains information for tuning shared server. |
| Contains size information about various system global area (SGA) groups. May be useful when tuning shared server. |
| Contains detailed statistical information about the SGA, useful for tuning. |
| Lists statistics to help tune the reserved pool and space within the shared pool. |
No comments:
Post a Comment