I'm working in SQL Server 2008 R2. I have an SSIS package that imports a csv file into a table. The given csv file is quote-qualified. Because the file is quote-qualified, in its corresponding flat file connection, I specified Text qualifier = ". However, the import fails because of a particular row in the file. The given row has quotes inside of quotes. For example:
"a","1","","text""moretext","","1.0"
The package throws the error:
The column delimiter for column <> was not found.
I still want the row (and rows like it) to be imported. How can I handle this in SSIS?