MSSQL: How to rename an Instance of MSSQL 2005
How to: Rename a Computer that Hosts a Stand-Alone Instance of SQL Server 2005
Before you begin
Before you begin the renaming process, review the following information:
- When an instance of SQL Server is part of a SQL Server failover cluster, the process of renaming the computer differs from the process of renaming a computer that hosts a stand-alone instance. For information about renaming a computer that hosts a failover cluster instance of SQL Server 2005, see How to: Rename a SQL Server 2005 Virtual Server.
- SQL Server does not support renaming computers that are involved in replication, except in the case of using log shipping with replication. The secondary computer in log shipping can be renamed if the primary computer is permanently lost. For more information, see Replication and Log Shipping.
- When you rename a computer that is configured to use Reporting Services, Reporting Services might not be available after the computer name change. For more information, see Renaming a Report Server Computer.
- When renaming a computer that is configured to use database mirroring, you must turn off database mirroring before the renaming operation, and then re-establish database mirroring with the new computer name. Metadata for database mirroring will not be updated automatically to reflect the new computer name.
- After the computer renaming operation, users who connect to SQL Server through a Windows group that uses a hard-coded reference to the computer name will not be able to connect to SQL Server if the Windows group specifies the old computer name. To ensure that such Windows groups have SQL Server connectivity following the renaming operation, update the Windows group to specify the new computer name.
You can connect to SQL Server using the new computer name after you have restarted SQL Server. However, to ensure that @@servername returns the updated name of the local server instance, you should manually run one of the following procedures, depending on whether you are updating a default or named instance.
- For a renamed default instance, run the following procedures:
Restart the SQL Server instance.
- For a renamed named instance, run the following procedures:
Restart the SQL Server instance.
After a computer has been renamed, any connections that used the old computer name must connect using the new name.
- Select information from either @@servername or sys.servers. The @@servername function will return the new name, and the sys.servers table will show the new name.
[Tai Yee – MSFT] The script below was added by a customer to the SQL Server 2008 version of this topic(http://technet.microsoft.com/en-us/library/ms143799(SQL.100).aspx) and for SQL 2008 R2 ( http://msdn.microsoft.com/en-us/library/ms143799.aspx ). As it also applies to SQL Server 2005, it is being added here as well. However, please be advised that this method is not supported by Microsoft; use at your own risk.
Maintenance plans don’t get their connections changed to the new server name and so they may break. After a rename you may find that you cannot delete or rename the existing maintenance plans, so either delete them before renaming the server and recreate them afterwards or run the following script to fix them:
use msdb
DECLARE @oldservername as varchar(max) SET @oldservername='<server name><instance name>' -- set the new server name to the current server name
declare @newservername as varchar(max) set @newservername=@@servername declare @xml as varchar(max) declare @packagedata as varbinary(max) -- get all the plans that have the old server name in their connection string DECLARE PlansToFix Cursor FOR SELECT id FROM sysdtspackages90 WHERE (CAST(CAST(packagedata AS varbinary(MAX)) AS varchar(MAX)) LIKE '%server=''' + @oldservername + '%') OPEN PlansToFix declare @planid uniqueidentifier fetch next from PlansToFix into @planid
while (@@fetch_status<>-1) -- for each plan begin if (@@fetch_status<>-2) begin select @xml=cast(cast(packagedata as varbinary(max)) as varchar(max)) from sysdtspackages90 where id= @planid -- get the plan's xml converted to an xml string declare @planname varchar(max) select @planname=[name] from sysdtspackages90 where id= @planid -- get the plan name print 'Changing ' + @planname + ' server from ' + @oldservername + ' to ' + @newservername -- print out what change is happening set @xml=replace(@xml,'server=''' + @oldservername + '''','server=''' + @newservername +'''') -- replace the old server name with the new server name in the connection string select @packagedata=cast(@xml as varbinary(max)) -- convert the xml back to binary UPDATE sysdtspackages90 SET packagedata = @packagedata WHERE (id= @planid) -- update the plan end fetch next from PlansToFix into @planid -- get the next plan end close PlansToFix deallocate PlansToFix
----- This will also handle the packages that have a tag such as ----- <DTS:Property DTS:Name="ConnectionString">Data Source=servername;Integrated Security=SSPI;Connect Timeout=30;</DTS:Property>
DECLARE @oldservername as varchar(max) SET @oldservername='<server name><instance name>'-- set the new server name to the current server name declare @newservername as varchar(max) set @newservername = @@servername declare @xml as varchar(max) declare @packagedata as varbinary(max)-- get all the plans that have the old server name in their connection string DECLARE PlansToFix Cursor FOR SELECT id FROM sysdtspackages90 WHERE (CAST(CAST(packagedata AS varbinary(MAX)) AS varchar(MAX)) LIKE '%Data Source=' + @oldservername + '%') OPEN PlansToFix declare @planid uniqueidentifier fetch next from PlansToFix into @planid while (@@fetch_status<>-1) -- for each plan begin if (@@fetch_status<>-2) begin select @xml=cast(cast(packagedata as varbinary(max)) as varchar(max)) from sysdtspackages90 where id= @planid -- get the plan's xml converted to an xml string declare @planname varchar(max)select @planname=[name] from sysdtspackages90 where id= @planid -- get the plan name print 'Changing ' + @planname + ' server from ' + @oldservername + ' to ' + @newservername -- print out what change is happening set @xml=replace(@xml,'Data Source=' + @oldservername,'Data Source=' + @newservername) -- replace the old server name with the new server name in the connection string select @packagedata=cast(@xml as varbinary(max)) -- convert the xml back to binary UPDATE sysdtspackages90 SET packagedata = @packagedata WHERE (id= @planid) -- update the plan end fetch next from PlansToFix into @planid -- get the next plan end close PlansToFix deallocate PlansToFix By: Microsoft