Collections:
Simplest Way To Create New Databases in SQL Server
What is the simplest way to create a new database in SQL Server?
✍: FYIcenter.com
The simplest way to create a new database is to use the "CREATE DATABASE" statement with this syntax:
CREATE DATABASE database_name
For example, run this statement:
CREATE DATABASE FyiCenterData GO
A new database called "FyiCenterData" should be created in the SQL server. Of course, FyiCenterData should be empty at this moment - no tables. But it should have some other data objects automatically created by the server.
⇒ "USE" - Setting the Current Database in SQL Server
⇐ What Is a Database in SQL Server
2016-11-24, 2396🔥, 0💬
Popular Posts:
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To List All Login Names on the Server in SQL Server? If you want to see a list of all login name...
What Are Out-of-Range Errors with DATETIME values in SQL Server Transact-SQL? When you enter DATETIM...