Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi team,
We need filter out data during cdc for only last two months. Records needs to be pushed for last two months only older date data should not be reflected.
Filter to be added on the basis of created_date and modified_date
Please help us in getting filter setup during cdc
Hi @sush_1 ,
You can add a filter expression like
$created_date >= datetime('now', 'localtime', '-2 months')
Regards,
Desmond
Hi @sush_1 ,
You can add a filter expression like
$created_date >= datetime('now', 'localtime', '-2 months')
Regards,
Desmond