all groups > sql server replication > december 2003 >
You're in the

sql server replication

group:

Error 18483



Re: Error 18483 no one
12/3/2003 10:36:35 AM
sql server replication: I usually have to do sp_dropserver as well to remove the server name I don't
want. Worth a try?

something like this:
sp_dropserver 'ABC1', 'droplogins'
sp_addserver 'ABC', 'local'




[quoted text, click to view]

RE: Error 18483 koohyar[MSFT]
12/3/2003 3:56:07 PM
Don't forget to restart SQL Server services after you rename the SQL Server.

This posting is provided "AS IS" with no warranties, and
confers no rights.
RE: Error 18483 koohyar[MSFT]
12/3/2003 3:56:13 PM
Here is the procedure to change the SQL Server name:

exec sp_dropserver 'OLD SERVER NAME'

go
exec sp_addserver 'NEW SERVER NAME', local
go
-- In SQL Server 2000 do the following if you have any SQL Server Agent jobs
USE msdb
go
Update msdb..sysjobs
set originating_server = 'NEW SERVER NAME'
where originating_server = 'OLD SERVER NAME'
go

This posting is provided "AS IS" with no warranties, and
confers no rights.
http://www.microsoft.com/info/cpyright.htm
Error 18483 Faisal
12/3/2003 5:26:57 PM
hi,
Servers Configs: Win2K with SP4, SQL Server 2K with SP3
I'm setting up replication b/w two servers, one is on my pvt. n/w while the
other one is on internet. When I tried to configure Publishing, Subscribers
and Distribution... I get
Error 18483:
Could not Connect to XXX Server because distributor_admin is not defined as
a remote login at the Server
I've checked both servers are responding to each other. A clue I got from
internet is that by both hostname and @@servername should be same, in my
case they are not. By running @@servername I get "ABC1" instead of "ABC".
However I used sp_addserver to add "ABC" and restarted sql server but
@@servername is still showing only "ABC1"
Immediate help is appreciated in this regard.
regards,
Faisal
Sr. Programmer / Analyst
Information Systems Dept.
Aga Khan University

Re: Error 18483 Faisal
12/4/2003 2:36:57 PM
Are you sure that I could do it in LIVE environment on production server?

regards,


[quoted text, click to view]

AddThis Social Bookmark Button