Tagged Questions
The advanced-queuing tag has no wiki summary.
4
votes
1answer
217 views
Does SQL Server have a feature similar to Oracle Streams Advanced Queuing?
Oracle Streams AQ (Advanced Queuing) provides highly scalable database-backed queuing functionality. Does an equivalent feature exist in SQL Server (any version)?
Note: I do not mean simply using a ...
4
votes
4answers
391 views
Lookup structure for handling future events (time based)
I am looking for an efficient data structure, that'll allow me to cue events ... that is, i will be having an app, where at any time in execution, it is possible, that an event will be raised for a ...
4
votes
2answers
3k views
What is the difference between Oracle Streams and Change Data Capture?
There are several similar Oracle tecnologies - Oracle Streams, Oracle Change Data Capture and Database Change Notification. Do you know what is difference between those? Are they related or Oracle ...
4
votes
3answers
1k views
Oracle Advanced Queuing - Queue Propagation
EDIT: It seems to be something with having the two queues in the same schema.
I’m trying to experiment with queue propagation but I’m not seeing records in the destination queue. But that could ...
2
votes
0answers
40 views
How to listen to Message Queue from Oracle 8i using C#
I was able to use message queue API using Oracle 11g in C# by installing the Oracle ODAP for message Queue. I have an upgrage project for an old system that is built on Oracle 8i. Basically I cannot ...
2
votes
2answers
141 views
Oracle SQL query fails only in one process: “ORA-01405: fetched column value is NULL”
I'm trying to call a system stored procedure in a "plugin" that I've built. When I test my plugin out in a test application, it works fine. When I run the plugin in the targeted app I'm building it ...
2
votes
2answers
334 views
Selective dequeue of unrelated messages in Oracle Advanced Queueing
This question refers to the dequeueing of messages in Oracle Streams Advanced Queueing.
I need to ensure that the messages which are related to each other are processed sequentially.
For example, ...
2
votes
3answers
2k views
Display contents of Oracle AQ SYS.AQ$_JMS_TEXT_MESSAGE
I have an application that uses JMS op top of Oracle advanced queuing. I would like to do a query on the queue table that shows the content of the message (which in my case is XML). So when I do a ...
1
vote
1answer
112 views
Oracle AQ message lost after session killed while dequeue in progress
I have an issue with DBMS_AQ.deQueue on an Oracle 11g R2 Windows 2008 R2 database. When a session does a dequeue and it is killed after that (before a commit or rollback), the particular message is ...
1
vote
1answer
86 views
Oracle AQ's requeue
I am trying to write universal pl/sql to (re)enqueue message already enqueued (present in queue table in whatever state).
It works fine when dequeue is enabled on the queue so I can dequeue first in ...
1
vote
1answer
626 views
Oracle AQ dequeue order
A trigger in an Oracle 10g generates upsert and delete messages for a subset of rows in a regular table. These messages consist out of two fields:
A unique row id.
A non-unique id.
When consuming ...
1
vote
2answers
300 views
Oracle: problem with constructing JMS message
After some struggle with Oracle Advanced Queuing and dbms_aq package
I encountered another issue. I copied code from Oracle tutorials
but when I compile this code:
create or replace
procedure ...
0
votes
2answers
59 views
MessageListener not listening to messages in Oracle Queue
I've Oracle Advanced Queue implemented & I'm writing a listener program. Below is my sample:
package com.myprog;
import java.io.File;
import java.io.FileInputStream;
import java.io.StringWriter;
...
0
votes
1answer
47 views
Dequeuing Messages Asynchronously in ODP.NET with closed connection
I'm trying to dequeue messages using the Oracle Advanced Queuing with ODP.NET. The already written is this one:
public static void ConnectToQueue()
{
ReadAllMessages();
...
0
votes
2answers
78 views
Is it a good idea to use Oracle 11g Client against a 10g database for Oracle Advanced Queuing?
I am developing some integration software for a client using amongst other things, C#, NServiceBus and Oracle 10g (client and server). The requirement is that I need to develop a new plugin for ...
0
votes
0answers
77 views
Oracle Fusion Middleware BPEL Advanced Queue Adapter listening to multiple queues
Is it possible to use the Oracle AQ Adapter in either Oracle BPEL 1.1 or BPEL 2.0 orchestrations so listen on multiple Oracle Advanced Queues simultaneously.
If so, how would one go about configuring ...
0
votes
0answers
308 views
Avoiding stale custom objects in Spring object pool?
I am using Spring to pool instances of oracle.AQ.AQSession. After a short time the pool begins to return stale connections and I get connection closed exceptions.
How can I tell Spring to evict ...
0
votes
1answer
396 views
Oracle AQ Java interface and custom message types
I am using the Oracle Java interface for AQ and want to dequeue messages. These messages consist out of two fields:
A unique row id.
A non-unique id.
I successfully decoded messages using a single ...
0
votes
1answer
1k views
PL/SQL function in Oracle cannot see DBMS_AQ
I have problem with Oracle 9.2 and JMS.
I created PL/SQL routine to send XML text (from file or CLOB) to queue,
but this routine do not compile.
My code looks like (filling message omitted):
create ...
0
votes
1answer
415 views
Can you dequeue over a DBLink?
I'm trying to dequeue from a queue on another server. I can't use propagation to get it to the server that needs the data. If I put a dblink in the name of the queue in the dequeue options I get an ...
0
votes
1answer
205 views
An example for using DBMS_AQ.POST and explanation of its utility
The DBMS_AQ package has a method called POST.
The documentation says,
This procedure posts to a list of
anonymous subscriptions, allowing all
clients who are registered for the
...
0
votes
1answer
395 views
Integrating Perl and Oracle Advanced Queuing
Is there any way to listen to an Oracle AQ using a Perl process as the listener.