June 28, 2012 at 8:07 am
Hi
I given Following command
select @@servername
Here Displaying corect server name. whenever i login sqlserver there displaying different server name. i want delete that server name .please help me where its storing.
Because of this log shipping not working properly.
June 28, 2012 at 8:31 am
if you renamed your server at the operating system level, the SQL server might still be remembering the old name;
this is how you fix it:
sp_dropserver 'old server name'
sp_addserver 'new server name', 'local'
Lowell
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply