We can set a row delimiter for a Flat File Connection in SSIS.but the question is how to set multiple row delimiters for a Flat File Connection to not using Script Component for this?
for example for a text file containing this string:
The quick brown fox, jumped over the lazy dogs.
I want to have this two rows after using ‘,’ and ‘.’ for row delimiter:
The quick brown fox
jumped over the lazy dogs
The short answer is that the stock Flat File connection manager doesn’t have that capability.
I frankly am having trouble imagining a business situation where somebody is sending me data in a flat file with inconsistent row delimiters. But if I did run into that situation, I’d use a script component, along the lines of @billinkc’s answer to your earlier Multiple row delimiters question.