Renaming SQL Server and Reporting Services
December 14, 2010 Leave a Comment
Renaming SQL Server & Reporting Services
If you change the name of a Windows Server which hosts a SQL Server instance then there a few steps you’ll need to take…
Rename SQL Server:
In SQL Server Management Studio check the name SQL has for itself:
print @@servername -- shows old name
If this isn’t your new server name then:
sp_dropserver @@servername -- drop old name sp_addserver new_name, local -- add new machine name
Now restart SQL Server and:
print @@servername -- first time will give a transport error, the second should show the new name
Reporting Services 2005:
- Delete 2 IIS virtual directories for Reports and ReportServer
- Open Reporting Services Configuration Manager from start menu:
- Create 2 new Virtual Directories for Report Server and Report Manager
- Database setup – choose the new server
- Web Service Identity – choose the RS app pool
- Encryption Keys – delete or restore if you have a backup
The process for Reporting Services 2008 should be simpler as it doesn’t use IIS.

