Bulk Insert Correctly Quoted CSV File in SQL Server
I'm trying to import a correctly quoted CSV file, meaning data is only quoted if it contains a comma, e.g.: 41, Terminator, Black 42, "Monsters, Inc.", Blue I observe that the first row imports correctly, but the second row errors in a manner that suggests the quoted comma was treated as a field separator. I have seen suggestions such as this one SQL Bulk import from CSV to change the field terminator FIELDTERMINATOR='","' However, my CSV file only quotes fields that need it, so I do not believe that suggestion would work. Can SQL Server's BULK IMPORT statement import a correctly quoted CSV