What permission do I need to use SqlBulkCopy in SQL Server 2008?

后端 未结 4 1803
时光取名叫无心
时光取名叫无心 2020-12-31 01:17

Using .NET\'s SqlBulkCopy, what permission do I need to give to the user in SQL Server 2008?

4条回答
  •  傲寒
    傲寒 (楼主)
    2020-12-31 01:41

    Only SELECT/INSERT perms are needed for SqlBulkCopy class to execute successfully. The class issues a INSERT BULK statement against the target SQL Server table. Verified this today on one of our dev servers.

提交回复
热议问题