Reputation: 5131
I have a connection manager (oledb) that points to a folder that has 20 dbf files. All the dbf files have the same schema. Just the data are for specific entities. I want to take all the data from the 20 dbf files and insert them into one table (in sql server). What tasks enables me to do this?
Upvotes: 0
Views: 306
Reputation: 46
You should create "For each loop" container, to write each file path to variable f.e. @fp
After that, you put inside DataFlow task and configure the connection
After, you should create another variable like @table
(substring your @fp
,to only file name) and put this variable in DataFlow task in source table.
ready example
Upvotes: 1