Is there any trick for swapping rows and columns of a XLS datasource in Informatica? In other words, I have an XLS files that are row format and would like to turn those rows into Column Format using Informatica.
Original Format
# ProgID Desc ParentID
1 1000 TopLevel
2 1100 SecondLevel 1000
3 1110 ThirdLevel 1100
To this format
Level1 LV1_Desc Level2 LV2_Desc Level3 LV3_Desc
1000 TopLevel 1100 SecondLevel 1110 ThirdLevel
and so on...
The new table should keep the parent and child relationship.
Thanks.
Original Format
# ProgID Desc ParentID
1 1000 TopLevel
2 1100 SecondLevel 1000
3 1110 ThirdLevel 1100
To this format
Level1 LV1_Desc Level2 LV2_Desc Level3 LV3_Desc
1000 TopLevel 1100 SecondLevel 1110 ThirdLevel
and so on...
The new table should keep the parent and child relationship.
Thanks.