Table of Contents
How to Create a Database in MS SQL Server is easier to understand when the core ideas are paired with practical examples. The sections below explain the topic clearly, highlight useful steps, and point out details that can prevent common errors.
Database includes objects such as tables, processes, functions. In MS SQL Server there are two types of databases
- System database
- User database
System database
The system database (database) is automatically created when you install MS SQL Server. Below is a list of system databases:
- Master
- Model MSDB
- Tempdb
- Resource (available from 2005 version)
- Distribution (only for Relication feature)
User database
User databases are created by users themselves (administrators, developers, testers. who have access to create databases). Here are the ways to create user databases.
Method 1 : Create a database using T-SQL Script or Restore Database
This is the basic syntax for creating databases in MS SQL Server:
Create database
Or
Restore Database from disk = '
As an example,:
To create a database named Testdb, run the following query:
Create database Testdb
Or:
Restore database Testdb from disk = 'D:BackupTestdb_full_backup.bak'
Note that D: backup is where the backup file is saved and Testdb_full_backup.bak is the name of the backup file.
Method 2 : Create database using SQL Server Management Studio
Connect to the SQL Server installation and right-click the database folder. Click to create a new database and the screen below will appear.
The screen fills in the information for the newly created database
Next lesson: How to select the database in MS SQL Server
FAQ
What should you know about system database?
The system database (database) is automatically created when you install MS SQL Server. Below is a list of system databases:
What should you know about user database?
User databases are created by users themselves (administrators, developers, testers. who have access to create databases). Here are the ways to create user databases.
What is How to Create a Database in MS SQL Server?
Database includes objects such as tables, processes, functions.
Reader Comments 0
Sign in with email or Google to join the discussion.