I am new to SSIS and am trying to create SSIS package.
I have value per line in a text file. There is a table consisting of records with each of the values in the text file. The SSIS package should generate text files for each of the value in the text file with the data from the table.
Details:
Text File – abcd.txt
10
11
12
13
Table
1 | 10 |
2 | 11 |
3 | 12 |
4 | 13 |
5 | 10 |
6 | 11 |
7 | 12 |
8 | 13 |
9 | 10 |
The SSIS package should create the following text files with the records that are associated with 10, 11,12 and 13:
10.txt
11.txt
12.txt
13.txt
Thanks in advance