Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2002-06-24 : 01:24:22
|
| Jason writes "Hello,Can you please advise how I can RENAME SQL Server. I believe that there are either SQL Admin Tools or SQL Scripts that can allow a DBA to achieve this, please HELP." |
|
|
jasper_smith
SQL Server MVP & SQLTeam MVY
846 Posts |
Posted - 2002-06-24 : 08:22:27
|
You're renaming the server itself not SQL Server On SQL 7 :Rename serverRebootSQL claims its been "tampered with" Rerun sql server setup (this won't install anything)start sql servicerun the following in QAuse master gosp_dropserver 'oldservername'gosp_addserver 'newservername','local'goOn SQL 2000 :Rename serverRebootrun the following in QAuse master gosp_dropserver 'oldservername'gosp_addserver 'newservername','local'go |
 |
|
|
|
|
|