We currently have a production server that needs replacing. Current server
is prod01 with default instance of sql2000. We are building a replacement
server prod02 with default instance of sql2005. Once the replacement server
is built and all databases are copied, the plan is to shutdown prod01 and
take it out of the domain, then rename prod02 to prod01 as well as giving the
replacement server the same ip address.
Will this rename the default instance as well? Will all app servers that
connected to prod01 now be able to connect to the new prod01 seemlessly?
The reason this approach is being suggested is due to the fact that the app
servers can not be changed (for various reasons) to point to another server.
Thanks
Ron
> We currently have a production server that needs replacing. Current
> server
[quoted text clipped - 17 lines]
>
> Ron
This can be done, however, you should also reset the SQL Server internals.
I believe the command is:
sp_dropserver <old default server name Prod02>
sp_addserver <new default server name Prod01>
I have not done this in quite a while however. Maybe someone else has some
additional gotcha's to look out for.
Rick Sawtell
Tibor Karaszi - 01 Jul 2008 00:10 GMT
Yep, just make sure you add below when adding back the server with the proper name:
, LOCAL

Signature
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
>> We currently have a production server that needs replacing. Current server
>> is prod01 with default instance of sql2000. We are building a replacement
[quoted text clipped - 23 lines]
>
> Rick Sawtell
bass_player - 01 Jul 2008 06:53 GMT
Another approach is to do it on the DNS, assuming you are using DNS to
access your SQL Servers. No need to replace the servername but the instance
name should be the same. Once you managed to change IP addresses, it's as
if nothing happened
>> We currently have a production server that needs replacing. Current
>> server
[quoted text clipped - 29 lines]
>
> Rick Sawtell
Thanks Guys.
> We currently have a production server that needs replacing. Current server
> is prod01 with default instance of sql2000. We are building a replacement
[quoted text clipped - 12 lines]
>
> Ron