Collections:
Renaming Database Names in SQL Server
How to rename databases in SQL Server?
✍: FYIcenter.com
If don't like the name of a database, you can change it by using the "ALTER DATABASE" statement with the following syntax:
ALTER DATABASE database_name MODIFY NAME = new_database_name
The tutorial example below shows you how change the database name from "FyiCenterData" to "FyiCenterComData":
ALTER DATABASE FyiCenterData MODIFY NAME = FyiCenterComData GO The database name 'FyiCenterComData' has been set.
⇒ Database in Use When Renaming a Database in SQL Server
⇐ Creating Databases with Specified Physical Files in SQL Server
2016-11-24, 2539🔥, 0💬
Popular Posts:
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
Can You Drop an Index Associated with a Unique or Primary Key Constraint in Oracle? You can not dele...