I have a simple bulk import script which is working fine
BULK
INSERT tablename
FROM 'd:\www\ftp\test.csv'
WITH
(
KEEPIDENTITY,
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n',
ERRORFILE = 'd:\www\ftp\test7.log'
)
GO
Now in the test.csv file there are values like:
Bike, Red, "100,00", Blue
Step, Blue, "60,40", Black
My question is how can I handle the "100,00" ("xxx,xx") value in the script?
Thanks!