Oracle 视图 ALL_QUEUE_SUBSCRIBERS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_QUEUE_SUBSCRIBERS视图可以查询出当前用户定义的归档日志信息,包括所有非系统队列、系统队列和归档队列的订阅者。可以用来查看队列订阅者的情况。
语法:
SELECT SUBSCRIBER_NAME, QUEUE_NAME, HANDLER, ENABLED FROM ALL_QUEUE_SUBSCRIBERS
用途:
使用ALL_QUEUE_SUBSCRIBERS视图查看数据库中用户定义的归档队列的订阅者信息。可以查询出每个队列的订阅者名称(SUBSCRIBER_NAME)、队列名称(QUEUE_NAME)、处理程序名称(HANDLER)以及订阅状态(ENABLED)。
官方英文解释
ALL_QUEUE_SUBSCRIBERS
displays the list of subscribers that the current user has privilege to dequeue from.
Related Views
DBA_QUEUE_SUBSCRIBERS
displays the list of subscribers on all queues in the database.USER_QUEUE_SUBSCRIBERS
displays the list of subscribers on queues that are under the current user’s schema. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Owner of the queue |
|
|
| Name of the queue |
|
|
| Name of the queue table on which the queue is defined |
|
| Name of the subscriber | |
|
| Address of the subscriber | |
|
| Protocol of the subscriber | |
|
| Transformation for the subscriber | |
|
| Rule condition for the subscriber | |
|
| Message delivery mode for the subscriber:
| |
|
| Indicates whether the subscriber is a non-durable subscriber ( | |
|
| Indicates whether the subscriber is a queue-to-queue subscriber ( | |
|
| ID of the subscriber | |
|
| Position of the subscriber in the bitmap |
See Also:
“DBA_QUEUE_SUBSCRIBERS”
“USER_QUEUE_SUBSCRIBERS”