<P mce_keep="true">MY company is going to change the IP address and HostName of Server where SQL 2000 is running. What is the impact to SQL 2000 Server? Will SQL2000 come back sucessfully? <IMG title=Blink src="http://www.sqlservercentral.com/Forums/Skins/Classic/Images/EmotIcons/Blink.gif" align=absMiddle border=0> Do I have to do anything before and after? Pls help me, Thanks a lot for your help.</P>
I am sorry I did not explain you my situation enough. I do not have doubt in accessing the new server with new name. My situation is this. I have stand alone server with a name RECOSRV1. MS SQL 2000 Server is running with a default instance in RECOSRV1. We are going to change the IP address and the Server Name from RECOSRV1 to RECOSRV2. After renaming the Server to the new name, will the SQL Server restart without any issues? What is the impact to SQL Server. Do I have to uninstall and reinstall SQL Server after renaming the hostname? Renaming of the hostname will affect the SQL server instace (default) running in thet host?
In your case (not a sql server cluster, I assume), changing sql server's ip and/or server name does not require a re-install of SQL. It should restart without any issue. Depending you what you mean by "stand alone server", you MIGHT have trouble, initially, to access the SQL server via its new name from another pc. This will be due to name to ip resolution. If so, get some help from your network guy on DNS and WINS.
You will need to run sp_dropserver, and sp_addserver with the new name. Here is a KB about it: http://support.microsoft.com/kb/303774
IP address will not be a problem for SQL Server, it will be if you have any hard-code within the connection string on the application, as referred above use the KBA to drop & add the server once the servername is changed. Ensure the service account passwords are intact before making any changes.