Paulie_
Paulie_

Reputation: 49

Adding Double Quotes to CSV Header in Azure Data Factory

The headers in the CSV look something like this: Name, Date, ID

I need the headers to be encapsulated by double quotation marks, something like this: "Name", "Date", "ID"

Note: The data below the headers are correctly encapsulated by double quotation marks, only the headers are missing them.

enter image description here

Upvotes: 0

Views: 1132

Answers (1)

All About BI
All About BI

Reputation: 533

You can use a data flow activity and under sink settings, choose Quote All text.

Sink dataset settings

Sink Setting

Dataflow Sink Tab setting DataSet Sink

After execution, my file looks like

File content

Upvotes: 2

Related Questions