OpenRowSet and OpenDataSet without sysadmin rights

后端 未结 2 581
夕颜
夕颜 2020-12-21 09:09

Is there any way to use the OpenRowSet and OpenDataSet commands in SQL Server 2008 R2 without having to have SysAdmin rights?

I\'m trying to load data from an Excel

2条回答
  •  春和景丽
    2020-12-21 09:54

    You don't necessarily require sysadmin rights, just the ADMINISTER BULK OPERATIONS permission (which is a server level permission but not quite sysadmin).

    If this isn't an option, you can try setting up a linked server connection and follow the method in this post.

提交回复
热议问题