February 24, 2010 at 12:03 pm
Hello Everyone
IS there a way to change the instance name? I would like to change the instance name to something a little easier to type, and something much shorter in text.
I seem to remember that the instance name can be modified, but I cannot be certain.
Thanks
Andrew SQLDBA
February 24, 2010 at 12:16 pm
nope, you would have to uinstall\reinstall, and that doesn't seem worth it to save a bit of typing 🙂
---------------------------------------------------------------------
February 24, 2010 at 12:22 pm
It's worth it to me. I really do not like what some fool named this instance
Thanks
Andrew SQLDBA
February 24, 2010 at 3:51 pm
Hi,
You can try below options:-
1) Collect current instance configuration using sp_helpserver
2) Drop the old server and create a new one.
sp_dropserver ‘old_name’
go
sp_addserver ‘new_name’,‘local’
go
3) Verify the configurations
Hope it works. Thanks.
February 24, 2010 at 4:39 pm
You could create an alias?
Is it a named instance or the default instance.
If its a named instance, and its the instance name you want to change then i think you will have to stop reinstall with a new name.
If its the default instance then you have to change the name of the computer running SQL Server and then run the scripts listed above to change the meta data in SQL Server. On a default instance SQL will automatically pick the computer name change at start up but the meta data in SQL will still have the old name so you have to run the scripts to change it.
Also worth noting if you have Maint Plans they don't pick up the chnag either and will likely stop working, You may have to drop them before the rename and recreate them after. I have seen a script that can fix them too but I can't find that at the momenet.
Also if the DB is used for reporting services there is a different process for renaming the computer. It will likely break any replication and mirroring setup too. You
Think that's about it, hope it helps
Gethyn Elliswww.gethynellis.com
February 24, 2010 at 4:45 pm
shivrampal (2/24/2010)
Hi,You can try below options:-
1) Collect current instance configuration using sp_helpserver
2) Drop the old server and create a new one.
sp_dropserver ‘old_name’
go
sp_addserver ‘new_name’,‘local’
go
3) Verify the configurations
Hope it works. Thanks.
As Gethyn said, this is for when the server name has changed and you want to update the metadata within SQL. after a server rename this will be the least of your problems though.
Using an alias sounds like a good idea to me.
---------------------------------------------------------------------
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply