首页 > 数据库> > The operation could not be performed because OLE DB provider "SQLNCLI10" for linked server
The operation could not be performed because OLE DB provider "SQLNCLI10" for linked server
作者:互联网
需要对执行链接数据库时,出现标题异常。那是因为目标数据没有配置好:
目标数据打开以下几个选项:
EXECUTE sp_configure 'show advanced options',1; GO RECONFIGURE; GO EXECUTE sp_configure 'remote access',1; GO RECONFIGURE; GO EXECUTE sp_configure 'remote admin connections',1; go RECONFIGURE; GO EXECUTE sp_configure 'remote proc trans',1 ; GOSource Code
重启服务器。
标签:begin,because,configure,xxx,EXECUTE,RECONFIGURE,GO,sp 来源: https://www.cnblogs.com/insus/p/15207055.html