程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> sqlserver 多表查詢不同數據庫服務器上的表

sqlserver 多表查詢不同數據庫服務器上的表

編輯:關於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

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved