prashanth t
prashanth t

Reputation: 1

Can we extract delta data from RestAPi through Azure DataFactory?

My Source is Rest API (comma separated value format)..how can I extract delta data in Azure Data factory?

Upvotes: 0

Views: 263

Answers (1)

chiragMishra-msft
chiragMishra-msft

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

Related Questions