astormofswords
astormofswords

Reputation: 49

Need to read a CSV file using Azure Data Factory Activity

I have a CSV file. I need to read each row and access the column values and for each row I need to call a foreach activity.

With what activity can I achieve this?

Upvotes: 1

Views: 4754

Answers (1)

Himanshu Kumar Sinha
Himanshu Kumar Sinha

Reputation: 1776

Assuming that the CSV file is in a cloud storage , you can use the lookup activity . Please beware that lookup activity has a limitation of 5000 at this time . Once you have done that you can use a FE loop and iterate through it . Hope this helps

Upvotes: 1

Related Questions