How to enable bulk permission in SQL Server

前端 未结 6 1254
我在风中等你
我在风中等你 2020-11-30 05:52

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

6条回答
  •  甜味超标
    2020-11-30 06:02

    If you get an error saying "Cannot Bulk load file because you don't have access right"

    First make sure the path and file name you have given are correct.

    then try giving the bulkadmin role to the user. To do so follow the steps :- In Object Explorer -> Security -> Logins -> Select the user (right click) -> Properties -> Server Roles -> check the bulkadmin checkbox -> OK.

    This worked for me.

提交回复
热议问题