how to replicate the data in target.
By modifiying your ETL process manually.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I have a source table/excel/csv data and done ETL to target SQL table.
Now if there is a new column introduced in the source data, how to replicate the data in target. Assume that there was already one load of data completed from source to target. What is the best way to deal this?
This is Azure Cloud specific question.
how to replicate the data in target.
By modifiying your ETL process manually.
Hey,
There are multiple ways depending on the source data type: full or delta
In case if the source data is always full ( you get the entire data always), then you can auto create the destination table :
but in case if the source has delta data and your target table contains historical data(which no longer comes from source), then you would have to manually add the new column at source and sink and do the necessary mappings