Reputation: 305
I have an SSIS package with a parameter параметром $[Project::MyParam]. Inside the SSIS package I have a component of Execute Process Task type. The component has a row Arguments; this is where I want to put a value from $[Project::MyParam]. How should I do it?
Upvotes: 0
Views: 28
Reputation: 443
You will need to use expressions to override the Arguments, right click on the execute task and the select properties or press F4, find the expression part and open it up, in there is a place for arguments
Then create your expression for Arguments
Expressions can be used to override nearly any input on any component, please see below docs for more information
Upvotes: 2