sqlserver建立远程查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver建立远程查询相关的知识,希望对你有一定的参考价值。
开始远程查询前:
----open:Ad Hoc Distributed Queries
EXEC sp_configure ‘show advanced options‘,1
reconfigure
exec sp_configure ‘Ad Hoc Distributed Queries‘,1
RECONFIGURE
结束查询:
-----close:Ad Hoc Distributed Queries
exec sp_configure ‘Ad Hoc Distributed Queries‘,0
reconfigure
exec sp_configure ‘show advanced options‘,0
reconfigure
示例:
SELECT gsjc ,
companyid ,
gscause
FROM OPENDATASOURCE(‘SQLOLEDB‘,
‘Data Source=120.76.233.81,5433;User ID=lq;[email protected]#‘).KMSLEY.dbo.basCompany
以上是关于sqlserver建立远程查询的主要内容,如果未能解决你的问题,请参考以下文章