SSIS convert object variable to string -
i store single row result set variable. able have set variable txtnotes object. issue i'm having using txtnotes variable use nother string variable. like: emailbody = "we have notes: " + "\n" + @[user::txtnotes] have tried article: ssis 2008, convert object string on expression builder keep getting error: error: 0xc0019001 @ script task: wrapper unable set value of variable specified in executionvaluevariable property. needed. thanks.
just found solution:
using cast(txtnotes varchar(8000)) txtnotes in execute sql task.
Comments
Post a Comment