I have some excel data which contains scientific numbers like 5e+00
.
When the see the value in excel by clicking edit button I can see the full value. But when I import the data into table I am getting the data loaded as Null
. I need to import the data without doing any changes in excel. Please suggest how to do it in SSIS.
I tried imported by changing the format in excel side. I want it to be done in ssis level without doing any changes in excel
Data in my Column as
Amounts
15880
5e+19
57892
I expect the output should be like as follows
1588007
500000000019
57892
But I am getting Null value for second item
Please suggest.