Some of my tables in SQL Server only includes a timestamp(rowversion) column to specify the changes.
I tried some type conversions like "query":SELECT *, DATEADD(MILLISECOND,CAST(Timest AS bigint),CAST('1900-01-01 00:00:00.0000000' AS datetime2)) AS MyNewDatetime FROM ProductPrice
But id didn’t worked as expected:)
Is it possible to use this unique binary column on jdbc source connector with any mode or am i trying the impossible?
I solved it with a subselect query which basically adds a new datetime2 column to my query results. With this approach i can use any rawversion or unique binary columns for mode:timestamp.