Sometimes we may need to rename a SQL Server database for testing purposes or when a testing database goes online, we may need to rename it on a production database.
There are two methods to do this. Let us first create a sample database
CREATE DATABASE testing
Method 1: Use sp_renamedb procedure
EXEC sp_renamedb 'testing','development'
The procedure sp_renamedb will rename the database from ‘testing’ to ‘development’
However this procedure may not be available in future release of SQL Server. So instead make use of the ALTER database command
ALTER DATABASE testing
MODIFY name=development
Method 2: Use SQL Server Management Studio
Right click on database and select rename and type the new name and hit Enter. The database will be renamed. The steps are shown below:
Best practices when renaming a database
1. Do not rename a production database without taking a backup
2. Make sure the database is not accessed by other applications
3. Do not use special characters as part of the database name
1 comment:
Good Post Madhivanan.
However, using these approaches the Logical & Physical names of the database files would still remain the same and will not be renamed.
Here is a detailed step-by-step procedure to rename a SQL Server Database completly & consistently.
Best Practice for renaming a SQL Server Database
Regards,
Datta
Post a Comment