To rename database it is very common to use for SQL Server 2000 user :
EXEC sp_renameDB 'oldDB','newDB'
sp_renameDB syntax will be deprecated in the future version of SQL Server. It is supported in SQL Server 2005 for backwards compatibility only. It is recommended to use ALTER DATABASE MODIFY NAME instead. New syntax of ALTER DATABASE MODIFY NAME is simple as well.
/* Create Test Database */
CREATEÂ DATABASE Test
GO
/* Rename the Database Test to NewTest */
ALTER DATABASE Test MODIFY NAME = NewTest
GO
/* Cleanup NewTest Database
Do not run following command if you want to use the database.
It is dropped here for sample database clean up. */
DROPÂ DATABASE NewTest
GO
Reference : Pinal Dave (https://blog.sqlauthority.com), BOL
30 Comments. Leave new
excellent website for sql
Hello Pinal,
Is there any logs so we can track DB name change
Hi Pinal,
1) if MODEL and MSDB databases are in suspect mode will my SQL server be alive/comeup?
2) if i have a table of 1TB, and fragmentation is 85%,apart from rebuild index,what other options do we have?
Hi Dave,
I want to rename a database that is in mirroring. Kindly share the steps for that.