I\'m trying to set up a Stored Procedure as a SQL Server Agent Job and it\'s giving me the following error,
Cannot bulk load because the file \"P:\\file.csv\" could no
Using SQL connection via Windows Authentication: A "Kerberos double hop" is happening: one hop is your client application connecting to the SQL Server, a second hop is the SQL Server connecting to the remote "\\NETWORK_MACHINE\". Such a double hop falls under the restrictions of Constrained Delegation and you end up accessing the share as Anonymous Login and hence the Access Denied.
To resolve the issue you need to enable constrained delegation for the SQL Server service account. See here for a good post that explains it quite well
SQL Server using SQL Authentication You need to create a credential for your SQL login and use that to access that particular network resource. See here