I'm having trouble setting up SQL Server Agent to be able to execute SSIS packages using configuration files. We have SSIS 2012 and SQL Server 2014 SP1 if it matters.
Packages are stored in the file system on our DB server. After clicking on the Configurations tab in the job setup, I was successfully able to add a .dtsConfig file found in the default package store path: C:\Program Files\Microsoft SQL Server\120\DTS\Packages.
However, upon clicking OK to save, I got the following error:
"Access to path C:\Program Files\Microsoft SQL Server\120\DTS\Packages\PackageName.dtsx is denied. (mscorlib)"
Firstly, I absolutely have permission to that path, as does our SQL Agent account, and the proxy account used to run the package via the Agent. Secondly, why would it error about access to the package on the Configuration tab, not access to the configuration file?
The packages in question DO execute when I run the job, successfully, but appear to do absolutely nothing. My thought is that it's probably not using the configuration file (since it thinks access to something is denied), and therefore is not looking for the correct network path. Anyone else run into this?