As the question suggests. I want to transform daily dumps of data to a database with all the .txt files to be converted to tables. What way can I accomplish that via ssis packages ?
Step 1. Identify the current folder ( Folder name structure - Name_mmddyyyy ) Step 2. Convert all the .txt files in that folder to tables in a database (eg : a.txt,b.txt,c.txt converted to a,b,c sql tables )
I want to automate this ssis package to run every day at a certain time . ( I know how to schedule a task ) . The ssis package implementation part is a bit sketchy.
Thanks in advance for the help. Any links to tutorials or articles appreciated.
EDIT : I realize this is a broad question but with the research I've done so far ,I could only find for-each loop from folder transforms and loads all data to a single table. I want all separate txt files to make a separate table according to the text file name. That's where I can't seem to find anything.