sqlserver 多表查询不同数据库服务器上的表
第一种方法:
第二种方法:
代码如下:
/* 创建链接服务器 */ exec sp_addlinkedserver 'srv_lnk','','sqloledb','条码数据库IP地址' exec sp_addlinkedsrvlogin 'srv_lnk','false',null,'用户名','密码' go /* 查询示例 */ SELECT A.ListCode FROM srv_lnk.条码数据库名.dbo.ME_ListCode A, IM_BarLend B WHERE A.ListCode=B.ListCode go /* 删除链接服务器 */ exec sp_dropserver 'srv_lnk','droplogins'
第二种方法:
代码如下:
exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure go select * from Product p inner join opendatasource('SQLOLEDB','Data Source=Macaco-Online;user ID=sa;password=sa密码;').Company.dbo.Product p2 on P.PID=p2.PID go exec sp_configure 'Ad Hoc Distributed Queries',0 reconfigure exec sp_configure 'show advanced options',0 reconfigure go
相关推荐
projava 2020-11-14
URML 2020-11-11
sushuanglei 2020-11-12
xwb 2020-07-19
huolan 2020-06-25
Ida 2020-06-17
LeoHan 2020-06-13
@server=‘LinkServer‘, --链接服务器别名。@datasrc=‘192.168.1.1‘ --要访问的的数据库所在的服务器的ip. ‘******‘ --要访问的数据库,用户的密码
zhangwentaohh 2020-06-01
bluet00 2020-05-10
书弋江山 2020-04-19
wxthillwill 2020-04-09
fengdos 2020-04-08
步行者 2020-03-26
hxw0 2020-03-06
点滴技术生活 2020-02-22
86211943 2019-12-20
末点 2020-01-12
gaozhennan 2020-01-12