Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a java application that is connected to a view on a remote Oracle db.

Does anyone know of a way in Java to monitor this table for changes? I.e. if there are inserts of updates etc I would need to react.

share|improve this question
Monitoring a database table for changes is a 'design smell'. You should consider introducing an Event Driven Architecture (EDA) supported by an Enterprise Service Bus (ESB). For example Mule (www.mulesoft.com). – Adriaan Koster Dec 22 '11 at 9:44
1  
Yep more buzzwords and "architecture" is always the right answer – Gaius Dec 22 '11 at 16:00

2 Answers

up vote 5 down vote accepted

You can place a INSERT/UPDATE/DELETE trigger on the table to perform some action when 'data' changes are made to the table. (as opposed to changes to the structure of the table)

I believe 10g also supports triggers on views.

but I'm not sure how you can notifiy the java process of this other then by polling.

sorry.

you could possibly create some solution where the java app has a 'listen' server and the database pushes it back a message. but that sounds hard to maintain.

Justin Cave in the comments suggests you could configure Oracle Streams to send out logical change records (LCRs) that a Java app could subscribe to via JMS. Or the trigger could write records to an Advanced Queue that Java could subscribe to via JMS.

you will still need to be wary of Oracle transations.. due to the way Oracle transactions work, the trigger will fire on the change, but it may also fire multiple times..

and in anycase the java app would not bee able to 'see' the changes until a commit had been performed.

share|improve this answer
Depending on how heavy the architecture needs to be, you can configure Oracle Streams to send out logical change records (LCRs) that a Java app could subscribe to via JMS. Or the trigger could write records to an Advanced Queue that Java could subscribe to via JMS. – Justin Cave Dec 3 '08 at 14:54
Brilliant thanks that looks like the ticket – LenW Dec 3 '08 at 14:55
The problem is that Streams works at the object level, not sure you can configure Streams to send out LCRs for a view. Is the view such that you can identify a handful of table(s) to subscribe to changes on and then poll the view to see if the row you're interested in really changed? – Justin Cave Dec 3 '08 at 15:07
While it is true that triggers could get fired multiple times with a rollback in between, Oracle AQ/ Streams is transactional, so the enqueue action would be rolled back as well. The only issue would be if you did something that cannot be rolled back in the trigger (i.e. send email). – Justin Cave Dec 3 '08 at 15:09

Look at Oracle Change Notification, a so interesting Oracle feature.

From the Oracle documentation: "Database Change Notification is a feature that enables client applications to register queries with the database and receive notifications in response to DML or DDL changes on the objects associated with the queries. The notifications are published by the database when the DML or DDL transaction commits."

share|improve this answer
Seems like it only works for PL/SQL or C callbacks but thats pretty much the stuff I need thanks - now how to wire it up to the java app ... :) – LenW Dec 3 '08 at 14:53
I believe that Oracle can call Java stored procedures, I just don't know how to do it. oracle.com/technology/sample_code/tech/java/jsp/… might help, though. – Powerlord Dec 3 '08 at 15:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.