Hi Santhi Dhanuskodi ,
Thankyou for posting your query on Microsoft Q&A platform.
The quoteChar
property is used in delimited text files in ADF is used to specify the character that is used to enclose column values. If the quoteChar
is set to double quotes "
, it means string column values in the CSV file would be enclosed within double quotes , it's applicable for both the types of columns having delimited character and not having delimited character.
Quote char typically are used to handle cases where the data itself contains delimiter characters (such as commas in CSV files) or newline characters. But it doesn't mean it will skip the columns not having delimited characters.
For example , suppose your source is SQL table and it contains data as:
id(int), name(varchar),CreatedDate (date)
1, 'ABC',
then having quote char as " in delimited text sink dataset would result the data as:
id,name,CreatedDate
1,"ABC",2016-06-01 00:00:00.0000000
Hope it helps. If you have any further query, kindly let us know. Kindly accept the answer by clicking on Accept answer
button. Thankyou