I need to map the following:
to....
The source is an xls file and I would like to have an ActiveX transformation that will do...
for each column in source
DTSDestination["ColName"] = column name of the source
DTSDestination["ColData"] = DTSSource[ column name of source ]
I will appreciate any ideas....
Code:
A B C D
----- ----- ----- -----
a1 b1 c1 d1
a2 b2 c2 d2
to....
Code:
ColName ColData
------- -----
A a1
A a2
B b1
B b2
etc....
The source is an xls file and I would like to have an ActiveX transformation that will do...
for each column in source
DTSDestination["ColName"] = column name of the source
DTSDestination["ColData"] = DTSSource[ column name of source ]
I will appreciate any ideas....