I want to execute SSIS package using command line arguments. As we can do it in executing C# project. And i want to use that argument.
CmdLineArguments: INTRADAY OPT OPTION_DAILY_INTRADAY_VOL12/02/2014
And then i want to use these different vlues to do some operations.
What I have got: I searched on line and got that we have to give something like below
dtexec /file Package.dtsx /Set \Package.Variables[User::UniversFileAddress].Properties[Value];\" INTRADAY OPT OPTION_DAILY_INTRADAY_VOL12/02/2014\"
which have no effect on execution. i mean it's not working for me. May be my concept is wrong.
whereas i want to pass arguments as below
INTRADAY OPT OPTION_DAILY_INTRADAY_VOL12/02/2014
And use these arguments in script task. How can i do so..?