SQL Server 跨库连接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL Server 跨库连接相关的知识,希望对你有一定的参考价值。

-- 开启组件
exec sp_configure show advanced options,1
reconfigure
exec sp_configure Ad Hoc Distributed Queries,1
reconfigure

-- 关闭组件
exec sp_configure Ad Hoc Distributed Queries,0
reconfigure
exec sp_configure show advanced options,0
reconfigure
-- 查询远程数据库
SELECT *  FROM OPENDATASOURCE(SQLOLEDB,Data Source=192.168.7.137;User ID=sa;Password=8818522).PanelData.dbo.Channel

 

以上是关于SQL Server 跨库连接的主要内容,如果未能解决你的问题,请参考以下文章

使用实体框架迁移时 SQL Server 连接抛出异常 - 添加代码片段

SQL Server 跨库同步数据

SQL Server跨库查询

SQL Server 跨库同步数据

SQL server 跨库插入数据

SQL Server跨库跨服务器访问实现