Skip to main content
Solved

without mongodb op_log origin cdc possibile?

  • June 12, 2023
  • 1 reply
  • 14 views

lakshmi_narayanan_t
Discovered Fame

If any possibility to do cdc operation without using mongodb op_log origin . like runins countinuously job by scheduled or some things.

Best answer by saleempothiwala

@lakshmi_narayanan_t 

 

You can pick up updates and inserts by using correct offset columns from the tables, like, last changed date. Getting deletes will be an issue unless you have triggers on tables that logs deleted records somewhere.

View original
Did this topic help you find an answer to your question?

1 reply

saleempothiwala
Headliner
Forum|alt.badge.img

@lakshmi_narayanan_t 

 

You can pick up updates and inserts by using correct offset columns from the tables, like, last changed date. Getting deletes will be an issue unless you have triggers on tables that logs deleted records somewhere.


Reply