Victor Sotnikov
Victor Sotnikov

Reputation: 305

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?

Upvotes: 0

Views: 28

Answers (1)

Ockert
Ockert

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

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

Upvotes: 2

Related Questions