I am attempting to import a comma delimited text file into sql server using the bulk insert script
BULK
INSERT
CSVTest
FROM
'c:\csvtest.txt'
WITH
(
FIELDTERMINATOR
=
','
,
ROWTERMINATOR
=
'\n'
)
However the row terminator keeps failing.
I have used a variety of different terminators and the following terminator works
'0x0a'
However, it imports only the first row in my data which is better than the previous terminators that completely fail however this does not resolve my issue because the script has to be used continuously over several files