Let me start off by saying that I'm very new to SSIS and have only done very simple data transfer tasks before, so please bear with me.
My task is as follows. I have a SQL server database with a table that stores information about excel files. (Their owner, filepath, status, etc). I want to select all rows from this table that have not yet been processed. Then, for each of those rows, I want to use the filepath in that row as an excel data source and insert data into the DB based on data in the excel files.
I can use an OLE DB Source to get data from the column and then do a conditional split based on the status, but I don't know how to establish a new excel data source for each row after the split.