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
To keep this simple, I just changed the directory from which I was importing the data to a local folder on the server.
I had the file located on a shared folder, I just copied my files to "c:\TEMP\Reports" on my server (updated the query to BULK INSERT from the new folder). The Agent task completed successfully :)
Finally after a long time I'm able to BULK Insert automatically via agent job.
Best regards.