How to Create Database in SQL Server

  • 13 years ago
Creation of database in SQL Server is pretty, specially using SQL Server Management Studio. We create a database easily by performing following steps.

Open SQL Server Management Studio.
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;

Recommended