Unfortunately, I was not very successful. My idea was to use the bcp
command-prompt utility, because bcp
has the option -R
which means that regional settings should be respected.
But, alas, it does not seem to apply when reading data for numeric
/decimal
, but bcp
wants a decimal point also when I give -R
. I was able to load data, when I changed the data type to money
. money
corresponds to decimal(18,4)
, and your data seems to have more decimals than just four, so I don't think this is a workable way for you.
However, there may be an even more fundamental problem. In your sample file above, there are several entries with two commas in them. I don't know if you were sloppy when you composed the sample, of if this reflects the actual data. (When trying to load the file, I assumed the former, and just removed the extraneous commas.) But it could be a good idea that you investigate this first before we continue the conversation.