Oracle 视图 V$AQ_NOTIFICATION_CLIENTS 官方解释,作用,如何使用详细说明
本站中文解释
V$AQ_NOTIFICATION_CLIENTS视图用于查看和管理使用Oracle Streams AQs的客户端会话.通过这个视图可以查看消息传递系统中存在的每一个客户端会话,并可以无缝地将其加入消息队列中使用。
可以使用V$AQ_NOTIFICATION_CLIENTS语句来查看当前与某个消息队列相关的客户端会话列表。语法如下:
SELECT * FROM V$AQ_NOTIFICATION_CLIENTS WHERE QUEUE_NAME = ;
此外,可以使用V$AQ_NOTIFICATION_CLIENTS语句来查看在当前消息队列中某个特定客户端会话的信息。语法如下:
SELECT * FROM V$AQ_NOTIFICATION_CLIENTS WHERE CLIENT_NAME = ;
官方英文解释
V$AQ_NOTIFICATION_CLIENTS
displays performance statistics for secure OCI client connections.
Column | Datatype | Description |
---|---|---|
|
|
Internally generated client ID for secure notification clients |
|
|
Emon ID serving the client |
|
|
Notification state:
|
|
|
Number of messages sent on the connection |
|
|
Number of bytes sent on the connection |
|
|
Number of messages successfully received by the client |
|
|
Time when the last message was sent on the connection |
|
|
Time when the last message was received over the connection |
|
|
Time at which the client connected |
|
|
Time at which the client disconnected |
|
|
The last error that occurred on the client connection |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
Oracle Database Advanced
Queuing User’s Guide for more information about Oracle Database Advanced Queueing