Hi -
I have a package that loads the data from CSV file into sql server table. I have values in csv file is like 0.0001111 but it always load it as 0.0000000 in the sql server table. Why is that so? what could be the reason?
e.g.
col1, col2, col3, col4
12,22,0.0000000,0.0001111
but in the sql server table it loads it as a
col1 col2 col3 col4
11 22 0.0000000 0.0000000
Can you please help me with this?
Thanks,