I am new to SSIS so please bear with me.
I have a external column in my SSIS package with text stream [DT_TEXT]
data type (length 0) the output column is string [DT_STR]
(length 1000).
Is there a way to trim the length of external column text stream [DT_TEXT]
to 1000 before sending to output.
Any help will be really appreciated.
I have tried Advanced Editor Column length column is disabled(as obvious) for text stream [DT_TEXT]
data types.
Any input will be really appreciated. Thanks
Substring(txt,0,1000)
– Viki888