'Use an SSIS parameter inside of an Execute Operation

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?



Solution 1:[1]

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

Open Expressions

Then create your expression for Arguments

Set Arguments

Expressions can be used to override nearly any input on any component, please see below docs for more information

SSIS Expressions

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Ockert