简体   繁体   中英

change the length of derived column in SSIS

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

截屏

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM