Hi,
Good day all, hope we are all good.
Please am design an ETL to load data from different sources into one table. All the source tables have the number of column and column type
E.g.
Source A
ID Name Age
1 Adam 23
2 Fred 34
Source B
ID Name Age
1 Smith 19
2 Angel 27....
And I want my destination table to look like this
Destination table
Name Age Source
Adam 23 A
Fred 34 A
Smith 19 B
Angel 27 B
For the source column I will use the Derived Column component to achieve.
My major challenge, however is how I can join the Name and Age columns for the respectively sources into the destination table.
Thanks
me