I have a simple requirement to create a text file for every row of data using column 1 as the file name and column 2 as the content of the file.
I am new to SSIS and all the tutorials I have seen so far use data flow inside a foreach loop. For each row they retrieve data from database and write it to a file. But I don't need to fetch from database as I already have them in variables which I am fetching from a view, and looping through. It would have been no issue if data flow component took variables as source data.