Sample Code for MSSQLSERVER cross-server connection (Remote logon)

Source: Internet
Author: User
Tags mssqlserver

MSSQLSERVER cross-server connection server creation method:

Copy codeThe Code is as follows:
-- Declare Variables
Declare @ svrname varchar (255 ),
@ Dbname varchar (255 ),
@ Sapassword varchar (255)
-- Modify the following variables before execution.
Select @ svrname = 'target server name ',
@ Dbname = 'target database ',
@ Sapassword = target Database Password
If exists (select srvname from master. dbo. sysservers where srvname = 'linked server name ')
Exec sp_dropserver @ server = 'linked server name', @ droplogins = 'droplogins'
-- Add a linked server
Exec sp_addmediaserver @ server = 'linked server name', @ srvproduct = '', @ provider = 'sqloledb', @ datasrc = @ svrname, @ catalog = @ dbname
-- Added remote logon to the linked server.
Exec sp_addmediasrvlogin @ rmtsrvname = 'linked server name', @ useself = 'false', @ locallogin = 'sa ', @ rmtuser = 'sa', @ rmtpassword = @ sapassword
-- Configure Parameters
Exec sp_serveroption @ server = 'linked server name', @ optname = 'use remote collation ', @ optvalue = 'false'
Exec sp_serveroption @ server = 'linked server name', @ optname = 'collation compatible ', @ optvalue = 'true'
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.