Introduction of MS SQL Server (original) (raw)
Last Updated : 06 Jun, 2021
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 :
- Microsoft SQL Server or MS SQL Server for short is the query language provided for data definition and manipulation.
- SQL Server is a Relational Database Management Systems which was developed and marketed by the Microsoft company.
- SQL and SQL servers are built as two layers where the SQL server is on the top for interacting with the relational databases.
- MS SQL Server also has T-SQL or Transact-SQL and the main focus of T-SQL is to handle the transactions.
- 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.
- 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.
- 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.
- It manages query processing, memory management, buffer management, threads, and much more.
- It has another layer named storage engine.
3. Storage Engine -
- It looks upon the storage of data.
- It is done using systems like disks and Storage Area Network or SAN.
Similar Reads
- Joins in MS SQL Server A database comprises tables and each table in case of RDBMS is called a relation. Let us consider a sample database named University and it has two tables named Student and Marks. If a user wants to transfer a certain set of rows, insert into select statement is used along with the query. But if a u 2 min read
- PL/SQL Introduction PL/SQL (Procedural Language/Structured Query Language) is a block-structured language developed by Oracle that allows developers to combine the power of SQL with procedural programming constructs. The PL/SQL language enables efficient data manipulation and control-flow logic, all within the Oracle D 7 min read
- Introduction of NewSQL | Set 2 Prerequisite - Introduction to NoSQL, Difference between SQL and NoSQL The term NewSQL is not exactly as wide as NoSQL. NewSQL systems all begin with the relational data model and the SQL query language and they all attempt to cover portion of similar types of scalability, flexibility or lack-of-foc 2 min read
- SQL Server CRUD Operations Transact SQL Statements can be classified into DDL, DML, and DCL Statements and in terms of Computer Programming, DML statements can be referred to as CRUD operations. In this article, we can see in more detail the CRUD operations and how we can use those statements in SQL Server with examples. CRUD 11 min read
- Self Join and Cross Join in MS SQL Server Prerequisite - Introduction of MS SQL Server 1. Self Join : Self-join allows us to join a table itself. It is useful when a user wants to compare the data (rows) within the same table. Syntax - select select_list from T t1 [Inner|Left] Join on T t2 on join_predicate. Here T refers to the table we us 2 min read
- Create login in SQL Server Creating a login in SQL Server is a crucial step in securing your database and controlling access to it. A login is an account that allows a user to connect to the SQL Server instance and access the database. In this article, we will explore the process of creating a login in SQL Server and the vari 2 min read
- Create Database in MS SQL Server Databases in Microsoft SQL Server are crucial for managing data, categorized into system databases, which are auto-created and user databases, created by users. In this article, We will learn about the basics of system and user databases along with methods for creating and managing them using T-SQL 5 min read
- Table operations in MS SQL Server In a relational database, the data is stored in the form of tables and each table is referred to as a relation. A table can store a maximum of 1000 rows. Tables are a preferred choice as: Tables are arranged in an organized manner. We can segregate the data according to our preferences in the form o 2 min read
- Introduction of Parallel Database In this article, we will discuss the overview of Parallel Databases and then will emphasize their needs and advantages, and then finally, will cover the performance measurement factor-like Speedup and Scale-up with examples. Let's discuss it one by one. Parallel Databases :Nowadays organizations nee 3 min read
- Primary key in MS SQL Server A table has a particular number of columns and each column has n number of rows. At times, there might be a probability of repeated rows in a column. For example, a column named identification number has repeated rows. To avoid the duplication of rows, the concept of a key has been introduced. A key 2 min read