Skip to main content
Solved

without mongodb op_log origin cdc possibile?

  • June 12, 2023
  • 1 reply
  • 20 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.

1 reply

saleempothiwala
Headliner
Forum|alt.badge.img
  • Headliner
  • 258 replies
  • Answer
  • June 13, 2023

@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.