SQL Server multiple tables query tables on different database servers

Source: Internet
Author: User

The first method:


Copy Code code as follows:


/* Create a linked server <span class="Apple-converted-space"></span> /*


exec sp_addlinkedserver ' srv_lnk ', ', ' SQLOLEDB ', ' Barcode database IP address '


exec sp_addlinkedsrvlogin ' Srv_lnk ', ' false ', NULL, ' username ', ' password '


go


/* Query Sample * <span class="Apple-converted-space"></span> *


SELECT a.listcode


from Srv_lnk. Barcode database name. Dbo.me_listcode A, im_barlend B


WHERE a.listcode=b.listcode


Go 


/* Delete the linked server <span class="Apple-converted-space"></span> /*


exec sp_dropserver ' srv_lnk ', ' droplogins '


the second method:


Copy Code code 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.