Hi @Mctwt-8188,
Sorry for the delayed response. There are a few ways to "incrementally copy" (Copy only new/updated records) depending on your source and sink in ADF.Assuming that your web activity gives you an array of elements to be processed, you can do the following :
- Chain a For Each activity to iterate through the array.
- Inside the ForEach activity, you can have items as something like (assuming array of items as outputArray) :
@activity('MainWebActivity').output.outputArray
- Inside the ForEach activity, you can have a parameterized web activity to iterate through each item in the array. Each item can be accessed using the expression :
@item()
Please look at this screen recording for details .
PS - If you want to parameterize a REST based Linked Service and dataset, you can do so by following this article Hope this helps.