I migrated a production SSIS solution from SQL Server 2005 to 2012 (with service pack 2). The solution downloads data via FTP and then imports five comma separated double quote qualified flat files into five tables. One of the files contains double quotes in the data and it is escaped with a backslash, i.e. "2006660","Tan","Gobi Sand \"R\" Metallic". The package stops when it reaches this row with the error "column delimiter not found."
This error didn't occur with SQL Server 2005, and I checked an old data set to make sure the escaped double quotes previously existed, and they did. I haven't had any luck with my Google searches on this problem. When I preview the data the connection manager properly displays the row where the error occurs.
Any thoughts on what could be going on? I suppose I could add a data transformation step to remove the backslashes and quotes, but since this wasn't a problem before I'm not sure why it is now. Especially since the data preview works.
Thank you,
Stephen