In my source table, I have a column called [lastSync] that is varchar.
In my history table I have last_sync as datetime.
Currently the only way that I know of how to solve this is to either
- Create new Custom field [last_sync] in my source table that includes TRY_CAST([lastSync] as DATETIME)
- The problem here would be that I would need to change my Source table from Simple mode. I would like to keep the simple mode table.
- Data redundancy as this specific column is stored twice.
- Create a new Custom field [lastSync] in my history table to accomodate the data before [last_sync] uses Custom Field Transformation to cast to datetime.
- The problem here would be redundancy as I’m storing the same column twice over a long period.
Of the two I would prefer option 1.
Is there no way to do this on the fly, so that data is converted when transferring data from the Source Table → History Table?
I’m Using TimeXtender Business Units 20.10.32.64