SQL Server creates a linked server stored procedure sample sharing _mssql

Source: Internet
Author: User

Create a linked server. Linked servers allow users to distribute heterogeneous queries to OLE DB data sources. Create a link using sp_addlinkedserver
Server, you can run distributed queries against the server. If the linked server is defined as an instance of SQL Server, the remote stored procedure can be executed.
http://msdn.microsoft.com/zh-cn/library/ms190479 (sql.90). aspx

EXECUTE sp_addlinkedserver @server = ' DB1 ', @srvproduct = ', @provider = ' sqloledb ', @datasrc = ' xxx.xxx.xxx.xxx ' Go


Set server options for remote and linked servers.
Http://msdn.microsoft.com/zh-cn/library/ms178532.aspx

Execute sp_serveroption n ' DB1 ', n ' rpc out ', n ' true '
go
EXECUTE sp_serveroption n ' DB1 ', n ' rpc ', n ' true '
go

Create or update mappings between logins on the local instance of SQL Server and security accounts on the remote server.
http://msdn.microsoft.com/zh-cn/library/ms189811 (sql.90). aspx

EXECUTE sp_addlinkedsrvlogin ' DB1 ', ' false ', NULL, ' sa ', ' Password ' 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.