- SQL Server on Linux
- Jasmin Azemovi?
- 187字
- 2021-07-02 20:24:19
System databases
SQL server has a concept of system and user databases. User databases are created for specific types of business process: HR, online shop, eHealth, and so on. It's up to the user (developers and DBAs) to define all the parameters. Here, you are in charge (more about it Chapter 4, Database in the Sandbox).
On the other hand, system databases are created during the installation procedure without almost any user influence. It is a repository of all SQL Server internals and it continues its process of updating its content, such as:
- Configuration data
- Users information
- Database objects
- Query execution statistics
- Troubleshooting
- Data statistics
- And many more
SQL Server simply can't work without it. All this important information is stored in the following system databases:
- master (system-wide settings and information about user databases)
- tempdb (a place for any temporal database tasks)
- model (the template for new user databases)
- msdb (used by SQL Server Agent Service for tasks scheduling )
Those four databases are default and the user can't directly access their content. To do that we need to use system catalog and dynamic management views objects.
- Unity 2020 By Example
- Learning Real-time Processing with Spark Streaming
- LabVIEW2018中文版 虛擬儀器程序設(shè)計(jì)自學(xué)手冊(cè)
- 零基礎(chǔ)PHP學(xué)習(xí)筆記
- Developing Mobile Web ArcGIS Applications
- Java加密與解密的藝術(shù)(第2版)
- HTML5+CSS3網(wǎng)站設(shè)計(jì)教程
- PHP+MySQL+Dreamweaver動(dòng)態(tài)網(wǎng)站開(kāi)發(fā)實(shí)例教程
- 軟件測(cè)試技術(shù)指南
- 快人一步:系統(tǒng)性能提高之道
- SQL基礎(chǔ)教程(第2版)
- Java網(wǎng)絡(luò)編程核心技術(shù)詳解(視頻微課版)
- 編程改變生活:用Python提升你的能力(進(jìn)階篇·微課視頻版)
- 硬件產(chǎn)品設(shè)計(jì)與開(kāi)發(fā):從原型到交付
- Android 5從入門(mén)到精通