You need to change the srvname fields in the sysservers table in the master DB, but this cannot be done directly form the table view, as ad-hoc updates to this table is not allowed, below is an sp using which we can achieve the task.
****For Default Instance****
sp_dropserver
go
sp_addserver
go
****Foa a named instance****
sp_dropserver
go
sp_addserver
go
For more info and FAQs check this link.
http://support.microsoft.com/kb/257716/en-us
No comments:
Post a Comment