Rename a Database
This topic describes how to rename a user-defined database in SQL Server 2012 by using SQL Server Management Studio or Transact-SQL. The name of the database can include any characters that follow the rules for identifiers.
In This Topic
Before you begin:
Limitations and Restrictions
Security
To rename a database, using:
SQL Server Management Studio
Transact-SQL
Follow Up: After renaming a database
Before You Begin
Limitations and Restrictions
- System databases cannot be renamed.
Security
Permissions
Requires ALTER permission on the database.
[Top]
Using SQL Server Management Studio
To rename a database
In Object Explorer, connect to an instance of the SQL Server Database Engine, and then expand that instance.
Make sure that no one is using the database, and then set the database to single-user mode.
Expand Databases, right-click the database to rename, and then click Rename.
Enter the new database name, and then click OK.
[Top]
Using Transact-SQL
To rename a database
Connect to the Database Engine.
From the Standard bar, click New Query.
Copy and paste the following example into the query window and click Execute. This example changes the name of the AdventureWorks2012 database to Northwind.
USE master;
GO
ALTER DATABASE AdventureWorks2012
Modify Name = Northwind ;
GO
[Top]
Follow Up: After renaming a database
Back up the master database after you rename any database.
[Top]