I am new to SSIS, I have created a data flow with oledb source and flat file destination.
Initially the destination file have row delimiter as {LF} but I have to change it as {CR}{LF} now. I have around more than 100 flat file destinations like this.
I tried the following approaches, the second one works but it is time consuming process.
I tried by opening each flat file connection manager and try to change the row delimiter but my visual studio is not responding. I did several times but no luck.
I deleted the flat file connection manager and re-create it with right row delimiter then its working fine but my concern is I have to do it for more than 100 times.
I opened the .dtsx file in a text editor and I can find header row delimiter but unable to find row delimiter.
I try to change the row delimiter in the expression but it does not take into effect.
Is there any best way we can simply do this?