Just wandering, is there any way that I can assign multiple rows data in a variable in SSIS?
example: I have the following table (tableA) with the following data created by the data flow task:
DataRow
Jay,10,11 Happy St\n\n
David,12,13 Angel St\n\n
Tom,30,23 Betman St\n\n
How can I able to assign those records into a variable in SSIS as below:
Jay,10,11 Happy St\n\nDavid,12,13 Angel St\n\nTom,30,23 Betman St\n\n
Then pass it into the Web service task. At the moment I'm running the web service task into the loop, but I would like to compile all the data row and pass over to the web service task outside the loop

Any way that I can do it? Any example are link could share?