Let’s say that my laptop was named “CHICAGO”. That makes the default instance also “CHICAGO'”, and my named instance “CHICAGO\KATMAI”. Now my laptop name changed to “NEWCHICAGO”. My SQL instances stay as “CHICAGO” and “CHICAGO\KATMAI”. How do you change them to match the new computer name?
Couldn’t be simpler, just execute two procedures. For the default instance.
USE master;
GO
EXEC sp_dropserver 'CHICAGO';
GO
EXEC sp_addserver 'NEWCHICAGO', local;
GO
It’s the same for a named instance. Just add the instance name.
USE master;
GO
EXEC sp_dropserver 'CHICAGO\KATMAI';
GO
EXEC sp_addserver 'NEWCHICAGO\KATMAI', local;
GO
Then, just restart the SQL service and you should see the name change.
Read more: SQLServerPedia