Reputation: 14077
I've deployed a SSIS package to SQL Server, which should read data from flat file, which is located here:
I can access path just fine from my local machine and I can run package from Visual Studio just fine too, however once I try to execute it on SQL Server, I get the following error:
Currently (just to debug) everyone has full access to this folder.
How do I fix it so my package works fine? (P.S. I don't have sysadmin rights, could it be the reason?)
I'm using Windows Authentication to login into SQL Server.
I execute my package from SSISDB. Screenshot for reference:
Upvotes: 0
Views: 4730
Reputation: 77
Right click on folder, properties--> In security tab, check whether your server account is added with full control permission. Lastly you can share the folder where file is placed with everyone, better to skip this sharing though if previous one works
Upvotes: 0