I created SSIS packages and used the Integration Services Deployment Wizard to deploy it out to the server. I'm manually going to the Integration Services Catalog access through SQL Server 2012 and right-clicking and executing my package.
However, the package keeps failing and I'm getting the following errors when I check the execution report's messages.
They appear to be failing on data tasks where I have script components.
Assign :Error: CS2001 - Source file 'C:\Windows\TEMP.NETFramework,Version=v4.0.AssemblyAttributes.cs' could not be found, CSC, 0, 0
Assign :Error: Failed to compiled scripts contained in the package. Open the package in SSIS Designer and resolve the compilation errors.
I had the same problem. I first used Eric G. response and added the
List
andRead
permission to thec:\windows\temp
. After I got everything working I went back and removed that permission. I then redeployed my solution from Visual Studio, this time designating the deployment target asSQL Server 2014
(which was the environment I was using) using Martin's solution. I then reran the process, and it worked with theList
andRead
removed.I kept it using Martin's solution, as I don't like to have special permissions granted if I don't need them.
Good Luck