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, 1409🔥, 0💬
Popular Posts:
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How To Generate Random Numbers with the RAND() Function in SQL Server Transact-SQL? Random numbers a...
How To Get a List of All Tables with "sys.tables" View in SQL Server? If you want to see the table y...