Link to home
Start Free TrialLog in
Avatar of searchsanjaysharma
searchsanjaysharma

asked on

How to change the servername in sql server.

I have a remote server, whose ip is 172.16.3.17.
I have Sql Server installed in it, the servername is shown as ADMISSIONCELL
Can  i change its name to 172.16.3.17
Avatar of sammySeltzer
sammySeltzer
Flag of United States of America image

You will need to run sp_dropserver, and sp_addserver with IP Address.

I have not tried with IP Address but I don't see why it would not work.

See MS kb:

http://support.microsoft.com/kb/303774
Avatar of David Todd
Hi,

The SQL Server name reflects the name of the server in the OS.

In fact, changing the OS server-name creates issues for SQL.

In SSMS I believe that you can specify different connect to name and display name in the registered servers. This is possibly a low-impact way of achieving your goal.

HTH
  David
ASKER CERTIFIED SOLUTION
Avatar of Ryan McCauley
Ryan McCauley
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of searchsanjaysharma
searchsanjaysharma

ASKER

Thanx