I have below data in a single flat file.
Source data:
ID Name Salary Address
1 aaa 25000 Pune
2 bbbb 30000 Bangalore
After loading data using flat file source. I have to split the data into 3 different tables, like below tables
ID Name
1 aaa
ID Salary
1 25000
ID Adress
1 City
In a single Data Flow Task, how can i split the data (with out using multicast task) into 3 different tables, is there any way ?
Is it Possible using Script Component ? if yes, how it is ?
please suggest
Mark as Answer if its helpful to you
---
Srihari