I have a SSIS package which imports data from SQlserver to SQLserver ,am using SSIS 2008.
In have a derived column transformation in middle of the dataflow which is as
(indicator) == "Y" ? "Yes": "No"
The output is coming as YES and NO for some of the rows. and for some of the rows its appearing correctly as "Yes" and "No". The case of the strings is getting changed.
Can anyone help me to fix this problem