Question

I have 2 new columns from Derived Column functionality and I have to merge them both into one Column and feed it to the destination Table.

Derived column 1:

ABC
BBC
CBC

Derived Column 2:

HPC
DRT
RTY

Derived Column 3 should be

ABC
BBC
CBC
HPC
DRT
RTY
Was it helpful?

Solution

USE UNION ALL Transformation AND Then Derived Column SSIS will and map the columns. Union ALL with Combine the two column and Derived Column will put the combined columns in One Derived Column.

enter image description here

something like this..

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top