In this video we will also learn how to use functions in Derived Column Transformation. In our case, we will use FindString function in derived column Transformation to split single delimited column into multiple columns.
Split Column into multiple Columns in SSIS by using Derived Column Transformation
Is this possible to achieve below output .?
ReplyDeleteID Group Category
1 A,B,C X,B,Z
2 E,F Y,A
3
4 G G
output
ID Group Category
1 A X
1 B B
1 C Z
2 E Y
2 F A
3
4 G G