How to get change notifications for rows updated such as row data/row description. I am able to get rows Id's which are updated.
I need to sync Table1 with Table2 based on the row Id's that I get as notification after updating Table1. I have read on few sites about notifications, but couldn't find any information on how to update a table based on notification. Please help!!
Below is some help information I found on Oracle website:
Applications in the middle tier require rapid access to cached copies of database objects while keeping the cache as current as possible in relation to the database. Cached data becomes out of date or "stale" when a transaction modifies the data and commits, thereby putting the application at risk of accessing incorrect results. If the application uses Database Change Notification, then Oracle Database can publish a notification when a change occurs to registered objects with details on what changed.
In response to the notification, the application can refresh cached data by fetching it from the back-end database.