@Sam Miller ,
Welcome to Microsoft Q&A platform and thanks for posting your question here.
As i understand your query, you want to know if there is any way to dynamically pass the row delimiter value in the delimited text dataset. In your case, say, you want to pass \r\n
as the row delimiter value. Please let me know if that is not the ask.
For Copy activity, the single character or "\r\n" used to separate rows in a file. The default value is any of the following values on read: ["\r\n", "\r", "\n"]; on write: "\r\n". "\r\n" is only supported in copy command.
You can pass the value \r\n
via pipeline parameter . Once you do that in the pipeline json it automatically appears like \r\n , try to remove the extra \
and run the pipeline.
Similar scenario handled in this thread: Parameterization of Row Delimiter property of ADF dataset
Hope it helps. Kindly accept the answer by clicking on Accept answer
button as accepted answer helps community as well. Thanks