Oracle 11gR1
V$DISPATCHER
displays information about the dispatcher processes.
Column | Datatype | Description |
|
| Name of the dispatcher process |
|
| Network address of the dispatcher |
|
| Process address |
|
| Status of the dispatcher: · · · · · · · · · |
|
| Indicates whether the dispatcher is accepting new connections ( |
|
| Number of messages processed by the dispatcher |
|
| Size (in bytes) of messages processed by the dispatcher |
|
| Number of breaks occurring in the connection |
|
| Number of circuits owned by the dispatcher |
|
| Number of circuits created by the dispatcher |
|
| Total idle time for the dispatcher (in hundredths of a second) |
|
| Total busy time for the dispatcher (in hundredths of a second) |
|
| Most recent Oracle error number the dispatcher received from the listener |
|
| Zero-based index of the |
Note:
1.
select name, network, status, accept from v$dispatcher;
NAME | NETWORK | STATUS | ACCEPT |
D000 | (ADDRESS=(PROTOCOL=tcp)(HOST=dbserver)(PORT=33073)) | WAIT | YES |
2. Monitor the following views to determine the load on the dispatcher processes:
- V$QUEUE
- V$DISPATCHER
- V$DISPATCHER_RATE
3. 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