e.g. if I create a solution, and link to a common script (e.g. "move
files" or similar). I then deploy this as a SQL agent job. If I modify
the common script on the network share, will the job in SQL agent
automatically pick up the change next time it's run? Or do I need to
open in in Visual Studio, load the script, then redeploy?
What happens if the modified file in the shared location is moved?
Will the job just fail?
Can you set the path to the STX file as an expression?
What happens if the STX file is altered to add in new (optional)
properties? e.g. if a new property is added, but not required, will
the existing packages using the script still process successfully?
2. Yes, you can use an expression to setup the path to the shared
script file. The path is contained in the ScriptLink property.
3. The property value is stored as variable and the context is the
task. The variable is named _<PropertyName> If you have a new property
and no variable for it, the task will still work.