Config in the config file for the variable is set to 0 and I m trying to over-ride the value via SQL agent job step to 1
Config in the config file
<Configuration ConfiguredType="Property" Path="\Package.Variables[User::MyVar].Properties[Value]" ValueType="String">
<ConfiguredValue>0</ConfiguredValue>
</Configuration>
Config in the job step:
Property path
\Package.Variables[User::MyVar].Value
Value
"1"
No matter how many times I execute the job step it doesnt change the value to 1
The SSIS package is built in VS2013 and runs on SSIS 2014 server std edition .
Package deployment model used and not PROJECT model.