Reputation: 1
I want to copy a JSON file into Azure SQL table, but it has nested Hierarchy, I only need the fields/values of the fields Ergon_Businessunit_code, KPL, Ergon_Functiegroep_code, Aantal. How to do that? I tried with lookup en foreach, but got array errors
Upvotes: 0
Views: 2599
Reputation: 5074
Yes as Mark Kromer mentioned, you can copy JSON data to the Azure SQL table using the dataflow
activity.
Here are the steps to copy JSON to Azure SQL using dataflow:
Connect the source output to flatten
transformation and under Unroll by and Unroll root, select "rows" array.
You can remove the columns which not required to pass to the sink.
dataflow
activity to the pipeline and execute it.Upvotes: 2