I defined parameters as shown below on my SSIS project
then I would like to change those optional over my sql agent- job, i defined as below.
even I tried to set a fix 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. End Error DTExec: Could not set \Package.Variables[startdate].Value value to 18.12.2014. Started: 16:30:21 Finished: 16:30:21 Elapsed: 0.296 seconds. The package execution failed. The step failed.
are the parameters read only? if yes, what is the sense of using paramters if i can only set them inside the 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 fix value already on project level rather than inside sql job but It is not allowed as well. why?
thanks.