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, L
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).
GRANT ADMINISTER BULK OPERATIONS TO [server_login]