I am trying to perform a bulk insert onto SQL Server:
BULK INSERT SampleData FROM '<UNC_Path>'
WITH ( FIELDTERMINATOR = '|', ROWTERMINATOR = '\n' )
This works running against my local database, but when I try to run against our dev server, I am getting the following error:
"Cannot bulk load because the file "..." could not be opened. Operating system error code 5(Access is denied.)
Both my account, and the SQL Service account has access to the path. My network admin is working with delegates to get this to work, but is running out of ideas. Has anyone here seen this issue before?