Oracle table change monitor - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T08:07:49Zhttp://stackoverflow.com/feeds/question/337335http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/337335/oracle-table-change-monitor4Oracle table change monitorLenW2008-12-03T14:42:20Z2008-12-03T14:57:38Z
<p>Hi Folks,</p>
<p>I have a java application that is connected to a view on a remote Oracle db. </p>
<p>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.</p>
<p>Thanks in advance
Len</p>
http://stackoverflow.com/questions/337335/oracle-table-change-monitor/337349#3373494Answer by ShoeLace for Oracle table change monitorShoeLace2008-12-03T14:45:26Z2008-12-03T14:57:38Z<p>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)</p>
<p>I believe 10g also supports triggers on views.</p>
<p>but I'm not sure how you can notifiy the java process of this other then by polling.</p>
<p>sorry.</p>
<p>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.</p>
<p><a href="http://stackoverflow.com/users/10397/justin-cave" rel="nofollow" title="Justin Cave">Justin Cave</a> 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.</p>
<p>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..</p>
<p>and in anycase the java app would not bee able to 'see' the changes until a commit had been performed.</p>
http://stackoverflow.com/questions/337335/oracle-table-change-monitor/337356#3373563Answer by FerranB for Oracle table change monitorFerranB2008-12-03T14:47:40Z2008-12-03T14:47:40Z<p>Look at <a href="http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_dcn.htm" rel="nofollow">Oracle Change Notification</a>, a so interesting Oracle feature.</p>
<p>From the Oracle documentation: <em>"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."</em></p>
http://stackoverflow.com/questions/337335/oracle-table-change-monitor/337372#3373721Answer by Justin Cave for Oracle table change monitorJustin Cave2008-12-03T14:50:33Z2008-12-03T14:50:33Z<ul>
<li>What version of Oracle? </li>
<li>Are you trying to monitor a table for changes? Or a view? </li>
<li>What sort of change volume are you anticipating?</li>
<li>What sort of response time do you need?</li>
<li>Are you trying to architect a solution for a new system (i.e. you're free to do whatever you like on the Java side and on the Oracle side)? Or are you trying to work around limitations in an existing system (i.e. there are constraints that you can't touch a third party's database, etc.)?</li>
</ul>