Cannot configure replication

  • when trying to configure replication,i am getting the below error.my server name is gimldnsps315.but select @@servername is giving the output as 'GARTMORE-748E90'.But when i try connecting via 'GARTMORE-748E90'.its not allowing.Please help me

    ERROR

    ======

    SQL Server replication requires the actual server name to make a connection to the server. Connections through a server alias, IP address, or any other alternate name are not supported. Specify the actual server name, 'GARTMORE-748E90'. (Replication.Utilities)

  • hi shanila,

    i think you are using the sql server default instance, right. if so,

    your system administrators might have changed the server name after installing the sql server.

    you can check it with this command.

    select @@servername

    sp_helpserver

    if both the queries give you different names then you need to drop the server name in the sql server and recreate it with

    sp_dropserver 'old server name'

    sp_addserver 'new server name', 'local'

    and then restart the server agent.

    try to do replication now. i think it should work.

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply