You are on page 1of 2

Concept and Capabilities of SQL Server 2017

Microsoft SQL web server is a relational data base management program. It uses MS- SQL as the
query language. SQL Server provides a advanced level of security, stability and scalability based on
the business needs. The web server provides a wide information storage space, full text query
search, shield control, signing and deal, fast information recovery etc. it provides a variety of
duplication solutions to avoid losing information. It provides SQL Server Confirming Services for
information collected from the data source.

SQL Server Overview

- SQL Server is a RDBMS, a complete data source.


- SQL Server works with structured query language and has rich assistance for XML.
- SQL Server includes number of features that assist easy installation, implementation, scalability,
information warehousing and program incorporation with other web server software.

SQL Server Components

- Database engine-It provides assistance for information access connections like ADO, OLEDB and
ODBC. Replication-It enables to maintain several duplicates of information on different computers
and also keep information well synchronized.
- DTS-It is for publishing and shifting information from several heterogeneous sources. It is used to
build information ware real estate information marts by the process of getting information from
several OLTP systems.
- Research services-It arranges information from information factory pieces to provide rapid
answers to complex concerns. Research the information saved in information factory information
marts.
- Meta information services-It is a set of solutions that helps to handle meta-data.
- Metadata explains significance and information of applications and procedures.

SQL Server 2000 Architecture

- SQL Server has logical Structure and Physical Structure.


- The information is structured into logical design that is visible to customer.
- Sensible elements consist of things, customers, positions, collations, logins and groups.
- The data source itself preserves information as files on hard drive.
- Sensible elements Objects consist of table, information type, view, saved procedure, function,
catalog, restriction, code, standard and induce.
- Collations Control how personality post are saved physically and the rules by which personality
are saved and compared.
- Logins-Each data base customer should have sign in id to allow data source to identify.
- Users are who can connect to data source.
- Role is a single device of customers having same authorization.
- Actual Architecture-Page and extents explains physical data source company.
- Website is the fundamental device of information storage space. Website is split into information
series which contain all information.
- Extents is the place where tables and indices are saved.

Transact SQL

- Allow us to create and handle all things.


- Client application conveys with SQL web server by transact-SQL declaration.
- SQL Server facilitates 3 types of transact-SQL declaration namely DDL, DLL and DML

Describe the use of keyword and key phrase WITH ENCRYPTION. Build a Shop Process with
Security.

It is a way to turn the unique written text of the saved procedure into secured type. The saved
procedure gets obfuscated and the outcome of this is not noticeable to
CREATE PROCEDURE Abc
WITH ENCRYPTION
AS
<< SELECT statement>>
GO
Explain the use of keyword and key phrase WITH ENCRYPTION. Build a Shop Process with
Security.

WITH ENCRYPTION Indicates that SQL Server will turn the unique written text of the CREATE
PROCEDURE declaration to an secured structure. Customers that have no accessibility to program
platforms or data source information cannot recover the secured written text. However, the written
written text will be available to blessed users.

Example:
CREATE PROCEDURE salary_sum
WITH ENCRYTION
AS
SELECT sum(salary)
FROM worker
WHERE emp_dept LIKE Develop

You might also like