Oracle 11gR1
V$QUEUE
contains information on the shared server message queues.
Column | Datatype | Description |
|
| Address of the process that owns the queue |
|
| Type of queue: · · |
|
| Number of items in the queue |
|
| Total time that all items in this queue have waited (in hundredths of a second). Divide by |
|
| Total number of items that have ever been in the queue |
Note:
1. select * from v$queue;
PADDR | TYPE | QUEUED | WAIT | TOTALQ |
00 | COMMON | 0 | 0 | 0 |
00000007BE71A430 | DISPATCHER | 0 | 0 | 0 |
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