Sending a JMS Message from Oracle Database on DML Event

前端 未结 1 1851
走了就别回头了
走了就别回头了 2020-12-19 21:36

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

相关标签:
1条回答
  • 2020-12-19 21:51

    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.

    0 讨论(0)
提交回复
热议问题