Scenario:
We
have a source table containing 3 columns : Col1, Col2 and Col3. There is only 1
row in the table as follows:
Col1
|
Col2
|
Col3
|
a
|
b
|
c
|
There
is target table contain only 1 column Col. Design a mapping so that the target
table contains 3 rows as follows:
Col
|
a
|
b
|
c
|
Without
using Normaliser transformation.
Solution:
Please follow the below steps
- After source qualifier, send data to three different Exp transformation like pass Col1 to Exp1,Col2 to Exp2 and Col3 to Exp3
- Then pass data from Exp1,Exp2 & Exp3 to 3 instances of same target table.
Comments
Post a Comment