Hi
I have a standard CSV file which has double quote enclosed fields. How do I specify in BULK INSERT that fields are quote enclosed. Currently
works fine but leaves the quotes in.
Any help would be gratefully appreciated.
Thanks
Chris
I have a standard CSV file which has double quote enclosed fields. How do I specify in BULK INSERT that fields are quote enclosed. Currently
Code:
BULK INSERT #TestTable FROM 'F:\*****\Production\Test Files\file.csv'
WITH (
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
Any help would be gratefully appreciated.
Thanks
Chris