Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to insert images using "bulk" into SQL Server 2012. But, am ending up with the error message stating tha:

Msg 4834, Level 16, State 1, Line 2 You do not have permission to use the bulk load statement.

I have "sysadmin" access.

share|improve this question
It might help if you posted what generated the error... – Ben Jan 30 at 13:06
How are you doing the bulk upload? It's not necessarily using your login, depending on where you're performing the action. – squillman Jan 30 at 13:26
Have you tried to set to BULKADMIN permission? – veljasije Jan 30 at 13:34
Are you sure that you have sysadmin as the user that you're running as? I ask because sysadmin is typically an "I can do anything" card on the server. Check with "exec xp_logininfo '<your login here>'" – Ben Thul Jan 30 at 16:23

1 Answer

Try GRANT ADMINISTER BULK OPERATIONS TO [server_login]. It is a server level permission, not a database level. This has fixed a similar issue for me in that past (using OPENROWSET I believe).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.