Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Upgrading to SQL 2005

Status
Not open for further replies.

gavjb

Technical User
Jul 5, 2005
67
GB
Hi,

I am in the process of looking a test upgrade from SQL2000 to SQL2005, once we are happy with the upgrade, we need to be able to turn off the SQL2000 and rename the SQL2005 server to the name of the SQL2000 server.

I know from experience with older version of sql server that this can be a pain to do, is it an easy task with sql2005 to rename a server?
 
It's just as easy with SQL 2005 as it is with SQL 2000.
Code:
exec sp_dropserver 'OldServerName'
go
exec sp_addserver 'NewServerName', 'local'
go
--Reboot


Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
thanks that was what I was after
 
no problem.

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top