Sqlserver multi-Table query of tables on different database servers

Source: Internet
Author: User

Method 1:
Copy codeThe Code is as follows:
/* Create a linked server */
Exec sp_add0000server 'srv _ lnk ', '', 'sqloledb', 'IP address of the bar code database'
Exec sp_add1_srvlogin 'srv _ lnk ', 'false', null, 'username', 'Password'
Go
/* Query example */
Select a. ListCode
FROM srv_lnk. Name of the barcode database. dbo. ME_ListCode A, IM_BarLend B
Where a. ListCode = B. ListCode
Go
/* Delete the linked server */
Exec sp_dropserver 'srv _ lnk ', 'droplogins'

Method 2:
Copy codeThe Code is as follows:
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 password; '). 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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.