I defined the parameters as shown below in my SSIS project

then I would like to change those that are optional for my sql agent given below.

even I tried setting the feed date value instead of getdate, but it returns an error message telling me that
Error: 2014-12-19 16: 30: 21.56 Code: 0xC001F016 Source: Package description: changing the value of a variable failed because it is a parameter variable. Parameter variables are read-only. DTExec termination error: could not install \ Package.Variables [startdate] .Value until 12/18/2014. Started: 16:30:21 Finished: 16:30:21 Expired: 0.296 seconds. Package execution failed. Failed to complete the step.
- read only options? if so, what is the point of using parameters, if I can only set them inside projects. there are variables, they will do the same job. If I am doing something wrong, please give me some light?
I tried to add getdate () instead of the fix value already at the project level, and not in the sql task, but it is also not allowed. What for?
thanks.
source share