Hello
I have a few csv files that has the following values in a scientific format:
ACCOUNT_NUMBER, INVOICE_NUMBER
1E+11, 2.0225E+11
![scientific.JPG]()
However, when I open the csv file in notepad, it displays the format I need.
"ACCOUNT_NUMBER","INVOICE_
NUMBER"
"100000309953","2022501724
28"
![scientific_1.JPG]()
My question is, how can I import the desired notepad value (100000309953) using ssis when the csv file has them recorded as a scientific value (1E+11, 2.0225E+11)?
Is there a way to convert the csv file to a txt file format, or is there way that I can use SSIS to convert the scientific value.