I\'m trying to determine if it is possible to configure Oracle Database 11g to send a JMS message to a broker (ActiveMQ in my case) when a particular DML event (say an inser
You could use an Oracle trigger which calls a Java stored procedure.
The Java stored procedure in turn could send a message using JMS.
Have a look at this example.