Oracle 视图 V$AQ_NONDUR_SUBSCRIBER 官方解释,作用,如何使用详细说明
本站中文解释
V$AQ_NONDUR_SUBSCRIBER是Oracle中的一种虚拟视图,它可以提供一个视图,用于检查特定消息订阅者的信息(消息类型或显示订阅者状态)。 可以通过使用这个视图来检查非持久性非持久订阅者的消息类型信息。 其用法如下:
SELECT * FROM V$AQ_NONDUR_SUBSCRIBER WHERE name=’Name_of_Subscriber’;
该查询会返回指定订阅者的所有信息,其中包括name、qos_name、transformation、forward_agent和status等。
官方英文解释
V$AQ_NONDUR_SUBSCRIBER
provides information about the non-durable subscriptions on sharded queues.
Note:
AQ sharded queues are deprecated in Oracle Database 21c. Oracle recommends that you instead use Transactional Event Queues (TEQs) for higher throughput and better performance.
Column | Datatype | Description |
---|---|---|
|
|
Queue ID |
|
|
ID of the non-durable subscriber |
|
|
Subscriber name |
|
|
Rule condition of the subscriber |
|
|
Owner of the transformation (for JMS queues) |
|
|
Name of the transformation (for JMS queues) |
|
|
Non-durable subscriber creation time |
|
|
Property of the subscriber:
|
|
|
Type of subscriber:
|
|
|
Position of subscriber in subscriber bitmap |
|
|
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