I'm very new to ssis.
I have this issue similar to a post: Flat File to retain commas from SQL data
But unfortunately I have not gotten any clearance yet.
Basically in SSIS package, I have
- OLEDB (source)
- Fuzzy lookup
- Conditional split to flat files (I'm using these flat files as source in another data flow)
While populating the records to the specified flat files, commas in address are being treated as delimiter hence all the values are populated wrongly.
Questions:
I have gone through some recommendations on quoting the string so the commas within one field can be escaped. If this is a resolution, then on which ssis step should I quote my address string?
How SSIS read vs How SSIS add delimiter (might cause brain damage) SSIS wants us to specify how it should read the output from my conditional split. But think about it, shouldn't it already know since from my steps: OLEDB to FUZZY to conditional split the columns are formatted into columns properly. Shouldn't it be asking how you want your values to be delimited instead? Just like if you have an excel and you want to convert them to flat files, it prompts you whether you wants it to be comma delimited or tab delimited. When you specify CSV, it simply adds comma between all your cell value (regardless if you have comma in your cell).
Please bear with my stupidity.