I have a stored procedure which I am trying to call from a command line vb.net program running on SQL Server 2012:
CREATE TABLE #ftpData(ftp_Email varchar(150) COLLATE DATABASE_DEFAULT, ftp_Segment varchar(1) COLLATE DATABASE_DEFAULT)
BULK INSERT #ftpData FROM 'C:\Users\Administrator\Documents\tempSegFiles\segmentation_.csv'
WITH(
FIELDTERMINATOR = ',',
ROWTERMINATOR = '\n'
)
When I run this from management studio it executes successfully. When I call the stored procedure from my vb.net program I get the error
Cannot bulk load because the file "xxx" could not be opened. Operating system error code 5 (Access is denied.)
The SQL account that I log in with to call the stored procedure has permissions for altering, executing, inserting and administer bulk operations. It also has server wide security privileges to bulkadmin, diskadmin, public.
Are there any other options that are required?