Reputation: 51
How can i Load two files(csv) the same shemas into my sqlDatabase with AzureDatafactory flow?
I've created one flow with two input and the same output but i get just the one table data the other one (NULL) .
Upvotes: 0
Views: 60
Reputation: 16411
As you said, the two csv file have the same schema, you could put them in same folder or container, make sure the container or folder only have the two files.
Then you could follow my steps:
My Container :
Data FLOW Source dataset settings:
Just choose the container or folder, all the csv files in it will be chosen. When we preview data, the data of the two csv files will be merged together
Sink dataset settings and data preview(the data will be inserted to the Sink table):
Run the pipeline:
Check the data in Sink table:
Hope this helps.
Upvotes: 1