All possible things with Qs

All possible things with Qs
Grouping by transactions -PLSQL
name
Name of a producer or consumer of a message. The name must follow object name guidelines in the Oracle9i SQL Reference with regard to reserved characters.
address
Protocol-specific address of the recipient. If the protocol is 0, then the address is of the form [schema.]queue[@dblink].
For example, a queue named emp_messages in the hr queue at the site dbs1.net has the following address:
hr.emp_messages@dbs1.net
protocol
Protocol to interpret the address and propagate the message.
Identifies a producer or a consumer of a message.
Syntax
TYPE SYS.AQ$_AGENT IS OBJECT (
name VARCHAR2(30),
address VARCHAR2(1024),
protocol NUMBER DEFAULT 0);
LISTEN is not 'fair' in monitoring the queues.
does by polling
Oracle recommends that you use a nonzero wait time for the first dequeue call on a queue in a session, and then use a zero wait time with the NEXT_MESSAGE navigation option for subsequent dequeue calls. If
Specifies a transformation that will be applied when this subscriber dequeues the message. The source type of the transformation must match the type of the queue. If the subscriber is remote, then the transformation is applied before propagation to the remote queue.
Yes
can we deq the LCRs enqueued by capture process???
NEXT_MESSAGE navigation option for subsequent dequeue calls.
is the entire column of table stored/ only the respective row??