Open In App

Introduction of MS SQL Server

Improve
Improve
Like Article
Like
Save
Share
Report

Data is a collection of facts and figures and we have humungous data available to the users via the internet and other sources. To manipulate the data, Structured Query Language (SQL) in short has been introduced years ago. There are different versions of SQL available in the market provided by different organizations. In this article, we shall see the version of SQL provided by Microsoft. 

Introduction : 
 

  1. Microsoft SQL Server or MS SQL Server for short is the query language provided for data definition and manipulation. 
     
  2. SQL Server is a Relational Database Management Systems which was developed and marketed by the Microsoft company. 
     
  3. SQL and SQL servers are built as two layers where the SQL server is on the top for interacting with the relational databases. 
     
  4. MS SQL Server also has T-SQL or Transact-SQL and the main focus of T-SQL is to handle the transactions. 
     
  5. As it is a Microsoft’s developed system, it worked only on Microsoft’s environment until it was made available on Linux platforms in the year 2016. 
     

SQL Server is composed of: Database engine, and Relational engine, and Storage engine. These are explained as following below. 

1. Database Engine – 
Database is a collection of various data items on which the user can perform any kind of manipulations. 
 

  1. The database engine has a relational engine on which a user can perform queries and it also comes with a storage engine which manages the data files, indexes and procedures. 
     
  2. The database engine also creates and executes objects like triggers, views, procedures etc. 
     

2. Relational Engine – 
Relations are the connections between the two different databases or within the same database. It is stored in the form of a row and column intersection named tables. 
 

  1. It manages query processing, memory management, buffer management, threads, and much more. 
     
  2. It has another layer named storage engine. 
     

3. Storage Engine – 
 

  1. It looks upon the storage of data. 
     
  2. It is done using systems like disks and Storage Area Network or SAN. 
     

 


Last Updated : 06 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads