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
It's probably a permissions issue but you need to make sure to try these steps to troubleshoot:
sa
and add the net use
and net use /delete
commands before and afterRemember to undo any changes (especially running as sa
). If nothing else works, you can try to change the bulk load into a scheduled task, running on the database server or another server that has bcp installed.