博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Describe in brief Databases and SQL Server Databases Architecture.
阅读量:5129 次
发布时间:2019-06-13

本文共 2198 字,大约阅读时间需要 7 分钟。

 

Databases

- A database is a structured collection of data.
- Database can be thought as simple data file.
- It is more powerful than data file which stores data in organized way.
- Database organizes the data into a table. It is made up of several tables with rows and columns.
SQL Database Architecture
SQL database is divided into logical and physical components.
Logical Component
Logical components comprises of following: 
Database objects, 
Collation, 
Login, Users, Roles and groups.
Physical component
Physically components exist as two or more files on disk.
Physically files can be of three types.
Primary data files
This is starting point of the database and contain pointer to point other files. Extension is mainly .mdf . 
Secondary data files 
It consists of data other than primary data file. Extension is mainly .ndf .
Log files
It contains log information which is used to recover database.

What are database files and filegroups?

Database files are used for mapping the database over some operating system files. Data and log information are separate. 

SQL server database has three types of database files:
Primary: starting point of a database. It also points to other files in database. Extension: .mdf
Secondary: All data files except primary data file is a part of secondary files. Extension: .ndf
Log files: All log information used to recover database. Extension: .ldf

Describe in brief Databases and SQL Server Databases Architecture.

SQL Server consists of a set of various components which fulfill data storage and data analysis needs for enterprise applications. Database architecture: All the data is stored in databases which is organized into logical components visible to the end users. It’s only the administrator who needs to actually deal with the physical storage aspect of the databases, whereas users only deal with database tables.

Every SQL Server instance has primarily 4 system database i.e. master, model, tempdb and msdb. All other databases are user created databases as per their needs and requirements.
A single SQL Server instance is capable of handling thousands of users working on multiple databasesv

转载于:https://www.cnblogs.com/zengkefu/p/6960973.html

你可能感兴趣的文章
Hadoop.2.x_网站PV示例
查看>>
EXTJS如何使用(转载)
查看>>
枚举 - 1.熄灯问题
查看>>
007grafana监控时间戳转换
查看>>
【2003-4】【分数计算】
查看>>
【2011-5】【最大乘积】
查看>>
一般计算 【2007】三3 C++版
查看>>
git使用总结
查看>>
2016-12-26 spoj STARSBC 欧拉函数水 spoj KAOS 字典树
查看>>
GoLang安装
查看>>
Spring 4 官方文档学习(十一)Web MVC 框架之HTTP caching support
查看>>
蓝桥杯历届试题 错误票据
查看>>
Objective-C 继承与多态
查看>>
图像预处理第6步:分割,并在分割出来的字符外面画框以标识
查看>>
NTP时间服务
查看>>
2016.04.11,英语,《Vocabulary Builder》Unit 12
查看>>
Web项目去掉Js文件红叉
查看>>
Linux 学习路径图
查看>>
[LeetCode] 1. Two Sum 两数之和
查看>>
C#实现 Eval
查看>>