I need to import multiple data into a db, but I cannot do it without operating by multiple transformation tasks. I want to do it (if it is possible) with a single transformation. Here's the situation of the source data:
Year Code A B C
1995 100 1 2 3
1996 200 4 5 6
1997 300 7 8 9
... ... . . .
I want to put them into a table that has:
Year Code Data
Each transformation puts the data (into the Data field) for A, B and C (so I've 3 transformation tasks), but I want to do it for all columns in a single transformation task.
Is there a way to put the data in the table for A, then for B and then for C into the same ActiveX script task of a transformation?
I've tried with Main = DTSTransfer_AppendData but it didn't work.
Thank you very much,
Riccardo
Year Code A B C
1995 100 1 2 3
1996 200 4 5 6
1997 300 7 8 9
... ... . . .
I want to put them into a table that has:
Year Code Data
Each transformation puts the data (into the Data field) for A, B and C (so I've 3 transformation tasks), but I want to do it for all columns in a single transformation task.
Is there a way to put the data in the table for A, then for B and then for C into the same ActiveX script task of a transformation?
I've tried with Main = DTSTransfer_AppendData but it didn't work.
Thank you very much,
Riccardo