You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
Understanding SQL Server's internal architecture helps you design better databases, write more efficient queries, and troubleshoot performance issues. This lesson covers instances, system databases, the storage engine, and memory management.
An instance is a running copy of the SQL Server Database Engine:
ServerName\InstanceNamePhysical Server
├── Default Instance (MSSQLSERVER)
│ ├── master, msdb, model, tempdb
│ └── User databases
├── Named Instance (DEV01)
│ ├── master, msdb, model, tempdb
│ └── User databases
└── Named Instance (TEST01)
├── master, msdb, model, tempdb
└── User databases
Tip: Named instances are useful for running different SQL Server versions on the same machine, for example during migrations.
Every SQL Server instance has four system databases:
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.