I am using SSIS 2008
to load alphanumeric
columns from Excel
.
I have one column which starts off as integer
1
2
...
999
Then changes to AlphaNumeric
A1
A2
A999
When I try to load using using an Excel Data Source
, excel will always say that it is an integer
as it must only sample the top of the file.
(BTW - I know that I can re-order the file so that the alphas are at the top but I would rather not have to do this...)
Unfortunately you can't seem to be able to change its mind. This means that when it loads the data, it filters out the 'A'
and the A999
record will update the 999 record. This is obviously not good...
I have tried to change the external and output columns to string under the advanced editing options
, but I get errors and it won't run until you set the columns back to integer.
Does anyone have a solution?