问题描述
大家好,
请帮我解决一个大问题,我不能用非sa用户使用openrowset。
Please help me with a huge problem, i cant use openrowset with a user non sa.
I已经配置:
sp_configure'show advanced options',1 $
reconfigure
sp_configure'Ad Hoc Distributed Queries',1
重新配置
sp_configure 'show advanced options',1
reconfigure
sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
并且没有
我已经分配了bulkadmin角色并管理批量操作权限 并且没有
I've assigned bulkadmin role and administer bulk operations permission and nothing
我的查询是:
SELECT lr。*
$
FROM OPENROWSET(
'SQLNCLI',
'Server = Server1; Trusted_Connection = yes',
'SELECT *
FROM Table'
$
)AS lr
SELECT lr.*
FROM OPENROWSET(
'SQLNCLI',
'Server=Server1;Trusted_Connection=yes',
'SELECT *
FROM Table'
) AS lr
错误是:
Msg 7416,Level 16,State 2,Line 7
Denegado el acceso al servidor remoto 。没有任何关于asignacióndeiniciodesesión的信息。
Msg 7416, Level 16, State 2, Line 7
Denegado el acceso al servidor remoto. No existe ninguna asignación de inicio de sesión.
请帮助
谢谢
Paul
推荐答案
这篇关于我不能使用openrowset与非sa用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!