Reputation: 53
I'm trying to use Azure Data Factory to take csv's and turn them into SQL tables in the DW.
The columns will change often so it need's to be dynamically taking the csv's schema.
I've tried using get metadata to get the structure and data type, but I'm unable to parse it into the relevant format to create the sql table.
has anyone done anything like this on ADF? Is it possible?
Upvotes: 5
Views: 12457
Reputation: 7758
Yes - it takes a bit of configuration, but you can accomplish this with Azure Data Factory Data Flow (ADFDF).
Create a DataSet pointing to your CSV location (I'm assuming Azure Blob Storage).
Create a DataSet for the SQLDW table.
Create a DataFlow to move the data from CSV to SQLDW.
In the Pipeline:
CAVEATS
Upvotes: 8