Considerations for SQL Replication Procedures

Source: Internet
Author: User
Process

1. Set up shared replication directory:
\\computer_machine\C$...\.. If the server cancels the default share ($), it fails, a new directory is created, and the directory is given permission to: \\computer_machine\ Share directory Name

2. Establish a Windows account for publishing applications

3. An error 18483 was encountered while configuring the Distributor because distributor_admin is not defined on this server as a remote login, it is not possible to create
Workaround: (Run the following program)
Use master
Go
--Set two variables
DECLARE @serverproperty_servername varchar (100),
@servername varchar (100)
--Obtains the Windows NT server and the instance information associated with the specified SQL server instance
--You can read the Books Online "Serverproperty"
SELECT @serverproperty_servername = CONVERT (varchar), serverproperty (' servername ')
--Returns the name of the local server running Microsoft®sql Server™
--You can read Books Online @ @SERVERNAME
SELECT @servername = CONVERT (varchar, @ @SERVERNAME)

If @serverproperty_servername and @servername are different (because you changed the computer name), run the following
--delete the wrong server name
EXEC sp_dropserver @server = @servername
--Add the correct server name
EXEC sp_addserver @server = @serverproperty_servername, @local = ' local '



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.