I want to read columns dynamically and concatenate values by using in SSIS. And it should generate a string of concatenate value which is delaminated by '|'. Nunber of columns will be not constant. Here is an example of what I am trying to do.
Input
Col1 Col2 Col3
123 ABC DEF
Output
Data
123|ABC|DEF
Could you please provide C# script for the same or any other solution.
Thanks, Nitin