0% found this document useful (0 votes)
30 views

System Databases: When You Install SQL Server, The Following Four Databases Are Created

The four system databases created during SQL Server installation are the master, model, msdb, and tempdb databases. The master database stores system configuration settings and information about other databases. The model database acts as a template for new databases. The msdb database is used by SQL Server Agent for alerts and jobs. The tempdb database holds temporary tables and procedures used by SQL Server.

Uploaded by

Ajit Wader
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

System Databases: When You Install SQL Server, The Following Four Databases Are Created

The four system databases created during SQL Server installation are the master, model, msdb, and tempdb databases. The master database stores system configuration settings and information about other databases. The model database acts as a template for new databases. The msdb database is used by SQL Server Agent for alerts and jobs. The tempdb database holds temporary tables and procedures used by SQL Server.

Uploaded by

Ajit Wader
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 1

System Databases : When you install SQL Server, the following four databases are created.

master

This database stores system level information such as user accounts, configuration settings, and
info on all other databases.

model

This database is used as a template for all other databases that are created.

msdb

The msdb database is used by the SQL Server Agent for configuring alerts and scheduled jobs etc

tempdb

This one holds all temporary tables, temporary stored procedures, and any other temporary
storage requirements generated by SQL Server.

These are system databases and each of them are there for a specific purpose. When we create our
own database, the database will be created based on the model database (above). That database
provides the template for any new database that you create.

You might also like