If Server Name changed
from Server B to ServerA.
To reflect the name change inside the SQL Server
instance, you need to run the script below:
1. EXEC sp_dropserver ‘ServerB’, ‘droplogins’;
2. EXEC sp_addserver ‘ServerA’, ‘local’;
3. Restart the instance.
Best Regards,
SQLBuddy