Collections:
Database in Use When Renaming a Database in SQL Server
Why I am getting this error when renaming a database in SQL Server?
✍: FYIcenter.com
If you are trying to rename a database that is in use, you will get an error message like this: "The database could not be exclusively locked to perform the operation."
Before renaming a database, you must stop all client sessions using this database. Otherwise, you will get an error as shown in this tutorial example:
1. Launch one instance of SQL Server Management Studio and run:
USE FyiCenterComData GO
2. Keep the first instance running and launch another instance of SQL Server Management Studio:
ALTER DATABASE FyiCenterComData MODIFY NAME = FyiCenterData GO Msg 5030, Level 16, State 2, Server LOCALHOST\SQLEXPRESS The database could not be exclusively locked to perform the operation.
Obviously, the first instance is blocking the "ALTER DATABASE" statement.
⇒ ONLINE/OFFLINE - Database States in SQL Server
⇐ Renaming Database Names in SQL Server
2016-11-20, 3088🔥, 0💬
Popular Posts:
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...
How To Use "IF ... ELSE IF ..." Statement Structures in SQL Server Transact-SQL? "IF ... ELSE IF ......
How REAL and FLOAT Literal Values Are Rounded in SQL Server Transact-SQL? By definition, FLOAT(n) sh...
How To Get the Definition of a Stored Procedure Back in SQL Server Transact-SQL? If you want get the...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...