Create database query in SQL server

This topic describes how to create a database in SQL Server 2017 by using SQL Server Management Studio or Transact-SQL.
Requires CREATE DATABASE permission in the master database, or requires CREATE ANY DATABASE, or ALTER ANY DATABASE permission.
To maintain control over disk use on an instance of SQL Server, permission to create databases is typically limited to a few login accounts.
In Object Explorer, connect to an instance of the SQL Server Database Engine and then expand that instance.
Right-click Databases, and then click New Database.
In New Database, enter a database name.
To create the database by accepting all default values, click OK; otherwise, continue with the following optional steps.
To change the owner name, click (…) to select another owner.
Note
The Use full-text indexing option is always checked and dimmed because, beginning in SQL Server 2008, all user databases are full-text enabled.
To change the default values of the primary data and transaction log files, in the Database files grid, click the appropriate cell and enter the new value. For more information, see Add Data or Log Files to a Database.
To change the collation of the database, select the Options page, and then select a collation from the list.
To change the recovery model, select the Options page and select a recovery model from the list.
To change database options, select the Options page, and then modify the database options. For a description of each option, see ALTER DATABASE SET Options (Transact-SQL).
To add a new filegroup, click the Filegroups page. Click Add and then enter the values for the filegroup.
To add an extended property to the database, select the Extended Properties page.
- In the Name column, enter a name for the extended property.
- In the Value column, enter the extended property text. For example, enter one or more statements that describe the database.
To create the database, click OK.
Connect to the Database Engine.
From the Standard bar, click New Query.
Copy and paste the following example into the query window and click Execute. This example creates the database Sales. Because the keyword PRIMARY is not used, the first file (Salesdat) becomes the primary file. Because neither MB nor KB is specified in the SIZE parameter for the Sales\dat file, it uses MB and is allocated in megabytes. The Sales_log file is allocated in megabytes because the MB suffix is explicitly stated in the SIZE parameter.