I have the following csv file
Column
2,3
2,4
And everytime when I import the data via SSIS Packages I get an error because of the comma value. When I change 2,3 and 2,4 to 2.3 and 2.4 it is working fine. And the values will be stored correctly with 2,3 and 2,4 into table.
For import I use Codepage 1252 ANSI-Lateinisch I and the field in the db is decimal(18,2).
What is wrong with my import? Any ideas?
THanks