Hi,
I have a scenario where sql db table is dynamically populate from a front end form. I just need to output the data from the table into flat file destination exactly the way it is stored in sql db table in pipe delimited format. One of the columns has data like ["output","output only","output output"]. I am using ssis data flow task and inside DF I used oledb source to get data from the table and connect it to flat file destination. When I execute package the data in above mentioned column is displayed in different lines and not in single line in output text file.
I tried using derived column to replace [ with " and use " as text qualifier in flat file destination but since input column is varchar max and output column is DT_TEXT replace is not supported for this datatype.
How do I fix this?
Thanks