Bug in ADF CSV Escaping

Alex Peake 1 Reputation point
2020-12-03T23:01:01.007+00:00

I have exported some data from SQL Server into a CSV file (copyData)

The actual text is:

leading text \"Jane Doe\" trailing text

It comes into the CSV file as:

"leading text \"Jane Doe\" trailing text"

Which fails on input parsing because the field now looks like:

"leading text \"Jane Doe\" trailing text"

It should be escaped as:

"leading text \\"Jane Doe\\" trailing text"

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,663 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.