Reputation: 21
I have a two databases: oracle & postgres. SymmetricDS is syncing the tables in two way directions. It seems that everything is working. But I need a logic based on triggers that corrects the inserted/updated rows "on the fly". This triggers must be located in the oracle DB.
The algorithm should be as follows:
What am I doing wrong? What else can I do to implement my algorithm?
Upvotes: 1
Views: 904
Reputation: 64640
Write your own implementation of org.jumpmind.symmetric.io.data.writer.DatabaseWriterFilterAdapter
at Oracle DB's side. This interceptor will do the job of the step 3 (and step 5).
Upvotes: 0