0

I want to change the derived column's length in my SSIS package from 8 to 100 How can I do that?

screenshot

jarlh
  • 42,561
  • 8
  • 45
  • 63

1 Answers1

1

To increase the length of a derived column or generally change the type, you need to explicitly cast it

Current

@[User::Inp_FileName]

Revised

(DT_WSTR, 100) @[User::Inp_FileName]

Cast the Variable Inp_FileName to a data type of unicode string, length 100.

billinkc
  • 59,250
  • 9
  • 102
  • 159