-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Description
Problem Description:
I'm currently working on a project involving real-time monitoring of changes in Oracle tables. I'm using the oracledb
library to establish a connection to the Oracle database, and I'm trying to implement a monitoring mechanism similar to Change Data Capture (CDC) or Continuous Query Notification (CQN). However, I'm encountering some limitations in the implementation.
Problem Details:
-
I tried using the CQN feature of
oracledb
to receive real-time notifications about changes in the tables, but this resulted inORA-29976
errors. -
Additionally, it's not feasible to set up triggers on the tables to capture changes as we don't have permission to modify table settings in the environment.
Request:
I'm curious to know if there's a more effective solution for implementing real-time monitoring of changes in Oracle tables using the oracledb
library. If anyone has insights into how to improve the current approach or if there are library features that I'm not utilizing correctly, I would greatly appreciate any guidance.
Alternative Suggestion:
If anyone has any suggestions for enhancing this implementation, especially regarding how to receive real-time notifications about changes without the need for triggers or table settings modifications, it would be extremely helpful. My goal is to find a solution that is more responsive and efficient for monitoring changes in Oracle tables without altering existing settings.
I'm thankful in advance for any assistance or insights you can provide. This would be highly valuable in refining this functionality and benefiting the community working with the oracledb
library.