System Databases
SQL Server comes with certain System
Databases, that get installed by default. All the System Databases has some
specific purpose and they primarily maintain META Data i.e. Data about Data.
a.
Master
This is a System Database that is primarily used to store information
about the user data. For e.g. if we create a table, then information about its
primary key, how many columns, data types etc. is maintained in this database.
b.
Model
This is a template database that is used whenever we create a new Database.
This will help in laying the basic structure of our new database.
c.
TempDB
This is also known as Temporary Database. SQL Server uses TempDB for
storing temporary data while doing different operations.
d.
MSDB
The msdb database is used by SQL Server Agent for scheduling alerts and jobs.
Will be posting more stuff about SQL Server. Stay tuned. !!!!!
Comments