Reputation: 2431
I am using DB2 as a source endpoint and replicating data into Amazon S3 through Amazon DMS CDC task. I want to track all operations so I have added a column "dms_timestamp" using TimestampColumnName property along with parquetTimestampInMillisecond as True.
But I am not getting time in microseconds for CDC. I know CDC timestamp depends on Source transaction timestamp but I can confirm DB2 has microsecond precision.
I have multiple cases where data getting update within a millisecond and I want to capture the latest change only. Consider there is no Watermark column of a table.
I have tried all transformation with AR_* But it did not help.
Please help me to get a timestamp with microSeconds precision.
Upvotes: 0
Views: 534
Reputation: 11
In environments that support microsecond precision, the date and time format of &TIMSTAMP journal control field is YYYY-MM-DDHH:MM:SS.UUUUUU
. Identifies the date and time of when the insert, update, or delete operation or refresh was made on the source.
Upvotes: 1