0
votes

I have a Pipeline in Azure Data Factory. The Pipeline Includes 3 Activities. 1. Lookup ---> Get Content from Table Storage 2. Web Activity --> Call a REST Endpoint (parameter is passed from the result of the lookup activity) 3. Copy Activity --> Copy the REST response payload into CSV.

The thing is I need to flag the Table Storage Row as Success or Fail based on the Web Activity if it returned Response 200 or not.

So my question is that is there any Activity in Azure Data Factory that lets you update a Table storage field.

2
you can delete and recreate the record, since updating is not yet supportedAlex Gordon

2 Answers

1
votes

According my experience, there isn't any Active in Data Factory support update a Table storage field for now.

Hope this helps.

0
votes

Sorry I don't have enough reputation for comment, that why I am writing in answer section.

Because there is no activity such as update a Table storage field, so this could be help you to solve your problem. With Update Entity you can updates an existing entity in a table.

Ref : https://docs.microsoft.com/en-us/rest/api/storageservices/update-entity2

Hope this is helpful.