An Azure service for ingesting, preparing, and transforming data at scale.
Sorry for my confused statement. Let me try to explain clearly
As said, my source is delimited file and all the record values are enclosed with double quotes (" " ) and column delimiter is pipe (|)
There I have few records where double quote is present inside the quoted values
Example :- I""ABC""""|"123" [Here one double quote before ABC and Three double quotes after ABC together all constitutes the value] which is enclosed within double quotes
Expected Output :- "ABC""" 123
But I got the result as ABC"""" I believe only double quotes present at start and end of the value should be removed in the sink, How come two Double quotes before ABC is removed
And I have few varchar columns where I get values for few records like |"""| ( Double quote enclosed within double quotes)--> For these records the pipeline is considering as incompatible rows and rejecting it.
Could you please clear me