I need to transpose some strings concatenated in one column in a Dataflow but I don't find a suitable solution.
I have millions rows like this :
Col1 Col2 Col3
1 MyVal1 String1
1 MyVal1 String2
2 MyVal2 String2
2 MyVal2 String1
2 MyVal2 String3
3 MyVal3 String3
3 MyVal3 String4
I need to transpose these lines like this :
Col1 Col2 Description
1 MyVal1 String1,String2
2 MyVal2 String2,String1,String3
3 MyVal3 String3,String4
I tried with the pivot transformation but it seems not appropriate for this problem.
How can i do that please ?
Thank you for your help.