1:打开'Ad Hoc Distributed Queries'
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
关闭只要将1设置为0
2:建立链路服务器
EXEC sp_addlinkedserver
'120Host', //昵称
'',
'SQLOLEDB',
NULL,
NULL,
'DRIVER={SQL Server};SERVER=IP,1433;UID=sa;PWD=;'
go
exec sp_addlinkedsrvlogin '120Host','false','sa','sa',''
GO
3:既可以建立查询
select *
from openquery([120Host],'select * from 库名.dbo.表名')
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
关闭只要将1设置为0
2:建立链路服务器
EXEC sp_addlinkedserver
'120Host', //昵称
'',
'SQLOLEDB',
NULL,
NULL,
'DRIVER={SQL Server};SERVER=IP,1433;UID=sa;PWD=;'
go
exec sp_addlinkedsrvlogin '120Host','false','sa','sa',''
GO
3:既可以建立查询
select *
from openquery([120Host],'select * from 库名.dbo.表名')
本文介绍如何通过设置SQL Server配置项'AdHocDistributedQueries'启用和禁用远程查询功能,详细步骤包括创建链接服务器及登录认证配置,并演示了如何使用OPENQUERY执行跨服务器查询。
1866

被折叠的 条评论
为什么被折叠?



