A Microsoft platform for building enterprise-level data integration and data transformations solutions.
For large LOB data, the reliable options are:
- Keep full text (recommended) : replace the expression with:
(DT_TEXT,1252)[Description]
The output column becomes DT_TEXT. Map it to a varchar(max)/text destination.
- Allow silent truncation to 8000 chars : keep your current expression, then open the Advanced Editor then Input/Output Properties then Derived Column Output then Columns then DESCRIPTION then set TruncationRowDisposition to RD_IgnoreFailure. Truncates at 8000 bytes (= 8000 chars under codepage 1252). Use only if data loss is acceptable.