In SSIS, I'm starting with a SQL Source (a table). It has 3 columns, including a varbinary column ("FileBlob") that comes from a filestream (this shows up as type DT_IMAGE in SSIS).
In the first data flow component, I convert the varbinary column to DT_TEXT, and output the result to a flat file. This works.
In the next step, I read in the flat file I just created, attempting to convert the DT_TEXT column back to DT_IMAGE.
I get this error:
The conversion returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.
I'm assuming there's a way to do a round-trip conversion of the binary data to text, and then back to binary. Just not sure what I'm missing. Thanks.