문제

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
도움이 되었습니까?

해결책

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..

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top