Reputation: 1
My Source is Rest API (comma separated value format)..how can I extract delta data in Azure Data factory?
Upvotes: 0
Views: 263
Reputation: 167
One way to do so would be to copy the data from the REST API to a staging table in Azure SQL and then set up incremental copy from the staging table to your final sink dataset.
Ref - https://learn.microsoft.com/en-us/azure/data-factory/tutorial-incremental-copy-overview
Hope this helps.
Upvotes: 1