How to enable bulk permission in SQL Server

前端 未结 6 1244
我在风中等你
我在风中等你 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:03

    SQL Server may also return this error if the service account does not have permission to read the file being imported. Ensure that the service account has read access to the file location. For example:

    icacls D:\ImportFiles /Grant "NT Service\MSSQLServer":(OI)(CI)R

提交回复
热议问题