一佳一

记录像1+1一样简洁的代码

导航

MSSQL跨服务器查询

Posted on 2017-10-20 14:49  一佳一  阅读(610)  评论(0编辑  收藏  举报

1.因为此功能服务器安全配置的一部分而被关闭,所以我们先开启

exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure

2.如果需要关闭,执行

exec sp_configure 'Ad Hoc Distributed Queries',0
reconfigure
exec sp_configure 'show advanced options',0
reconfigure

3.查询语句

SELECT * 
FROM OPENDATASOURCE( 
'SQLOLEDB', 
'Data Source=远程IP地址;User ID=sa;Password=密码' 
).数据库.dbo.表名