To create the database by accepting all default values, select OK otherwise, continue with the following optional steps. Right-click Databases, and then select New Database. In Object Explorer, connect to an instance of the SQL Server Database Engine and then expand that instance.
Use SQL Server Management Studio Create a database To maintain control over disk use on an instance of SQL Server, permission to create databases is typically limited to a few SQL Server login. Requires CREATE DATABASE permission in the master database, or requires CREATE ANY DATABASE, or ALTER ANY DATABASE permission. When you create a database, make the data files as large as possible based on the maximum amount of data you expect in the database. The master database should be backed up whenever a user database is created, modified, or dropped. The CREATE DATABASE statement must run in autocommit mode (the default transaction management mode) and isn't allowed in an explicit or implicit transaction.A maximum of 32,767 databases can be specified on an instance of SQL Server.To create a database in Azure SQL Database using T-SQL, see Create database in Azure SQL Database.