0% found this document useful (0 votes)
33 views

Describe Azure SQL Services and Capabilities

The document describes Azure SQL services including SQL Server on Azure VMs, Azure SQL Managed Instance, and Azure SQL Database. It provides details on the type of cloud service, SQL Server compatibility, architecture, availability, management, and use cases for each option.

Uploaded by

David Sofita
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views

Describe Azure SQL Services and Capabilities

The document describes Azure SQL services including SQL Server on Azure VMs, Azure SQL Managed Instance, and Azure SQL Database. It provides details on the type of cloud service, SQL Server compatibility, architecture, availability, management, and use cases for each option.

Uploaded by

David Sofita
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 9

Describe Azure SQL services and

capabilities
Completed100 XP
 10 minutes

Azure SQL is a collective term for a family of Microsoft SQL Server based database
services in Azure. Specific Azure SQL services include:

 SQL Server on Azure Virtual Machines (VMs) - A virtual machine running in


Azure with an installation of SQL Server. The use of a VM makes this option an
infrastructure-as-a-service (IaaS) solution that virtualizes hardware infrastructure
for compute, storage, and networking in Azure; making it a great option for "lift
and shift" migration of existing on-premises SQL Server installations to the cloud.
 Azure SQL Managed Instance - A platform-as-a-service (PaaS) option that
provides near-100% compatibility with on-premises SQL Server instances while
abstracting the underlying hardware and operating system. The service includes
automated software update management, backups, and other maintenance tasks,
reducing the administrative burden of supporting a database server instance.
 Azure SQL Database - A fully managed, highly scalable PaaS database service
that is designed for the cloud. This service includes the core database-level
capabilities of on-premises SQL Server, and is a good option when you need to
create a new application in the cloud.
 Azure SQL Edge - A SQL engine that is optimized for Internet-of-things (IoT)
scenarios that need to work with streaming time-series data.
Note

Azure SQL Edge is included in this list for completeness. We'll focus on the other options
for more general relational database scenarios in this module.
Compare Azure SQL services

SQL Server on Azure VMs Azure SQL Managed Instance Azure SQL Database

Type of cloud IaaS PaaS PaaS


service
SQL Server Fully compatible with on- Near-100% compatibility with Supports most core
compatibility premises physical and SQL Server. Most on-premises database-level
virtualized installations. databases can be migrated with capabilities of SQL
Applications and databases can minimal code changes by using Server. Some features
easily be "lift and shift" the Azure Database Migration depended on by an on-
migrated without change. service premises application may
not be available.
Architecture SQL Server instances are Each managed instance can You can provision
installed in a virtual machine. support multiple databases. a single database in a
Each instance can support Additionally, instance pools can be dedicated, managed
multiple databases. used to share resources efficiently (logical) server; or you
across smaller instances. can use an elastic pool to
share resources across
multiple databases and
take advantage of on-
demand scalability.
Availability 99.99% 99.99% 99.995%
Management You must manage all aspects Fully automated updates, backups, Fully automated updates,
of the server, including and recovery. backups, and recovery.
operating system and SQL
Server updates, configuration,
backups, and other
maintenance tasks.
Use cases Use this option when you need Use this option for most cloud Use this option for new
to migrate or extend an on- migration scenarios, particularly cloud solutions, or to
premises SQL Server solution when you need minimal changes to migrate applications that
and retain full control over all existing applications. have minimal instance-
aspects of server and database level dependencies.
configuration.
SQL Server on Azure Virtual Machines
SQL Server on Virtual Machines enables you to use full versions of SQL Server in the
Cloud without having to manage any on-premises hardware. This is an example of the
IaaS approach.

SQL Server running on an Azure virtual machine effectively replicates the database
running on real on-premises hardware. Migrating from the system running on-
premises to an Azure virtual machine is no different than moving the databases
from one on-premises server to another.

This approach is suitable for migrations and applications requiring access to operating
system features that might be unsupported at the PaaS level. SQL virtual machines
are lift-and-shift ready for existing applications that require fast migration to the cloud
with minimal changes. You can also use SQL Server on Azure VMs to extend existing on-
premises applications to the cloud in hybrid deployments.

Note

A hybrid deployment is a system where part of the operation runs on-premises, and part
in the cloud. Your database might be part of a larger system that runs on-premises,
although the database elements might be hosted in the cloud.

You can use SQL Server in a virtual machine to develop and test traditional SQL Server
applications. With a virtual machine, you have the full administrative rights over the
DBMS and operating system. It's a perfect choice when an organization already has IT
resources available to maintain the virtual machines.

These capabilities enable you to:

 Create rapid development and test scenarios when you don't want to buy on-
premises non-production SQL Server hardware.
 Become lift-and-shift ready for existing applications that require fast migration to
the cloud with minimal changes or no changes.
 Scale up the platform on which SQL Server is running, by allocating more
memory, CPU power, and disk space to the virtual machine. You can quickly resize
an Azure virtual machine without the requirement that you reinstall the software
that is running on it.
Business benefits

Running SQL Server on virtual machines allows you to meet unique and diverse business
needs through a combination of on-premises and cloud-hosted deployments, while
using the same set of server products, development tools, and expertise across these
environments.

It's not always easy for businesses to switch their DBMS to a fully managed service.
There may be specific requirements that must be satisfied in order to migrate to a
managed service that requires making changes to the database and the applications
that use it. For this reason, using virtual machines can offer a solution, but using them
doesn't eliminate the need to administer your DBMS as carefully as you would on-
premises.

Azure SQL Database Managed Instance


Azure SQL Managed instance effectively runs a fully controllable instance of SQL Server
in the cloud. You can install multiple databases on the same instance. You have
complete control over this instance, much as you would for an on-
premises server. SQL Managed Instance automates backups, software patching,
database monitoring, and other general tasks, but you have full control over security
and resource allocation for your databases. You can find detailed information at What is
Azure SQL Managed Instance?.

Managed instances depend on other Azure services such as Azure Storage for backups,
Azure Event Hubs for telemetry, Microsoft Entra ID for authentication, Azure Key Vault
for Transparent Data Encryption (TDE) and a couple of Azure platform services that
provide security and supportability features. The managed instances make connections
to these services.

All communications are encrypted and signed using certificates. To check the
trustworthiness of communicating parties, managed instances constantly verify these
certificates through certificate revocation lists. If the certificates are revoked, the
managed instance closes the connections to protect the data.
Use cases

Consider Azure SQL Managed Instance if you want to lift-and-shift an on-premises SQL
Server instance and all its databases to the cloud, without incurring the management
overhead of running SQL Server on a virtual machine.

Azure SQL Managed Instance provides features not available in Azure SQL Database
(discussed below). If your system uses features such as linked servers, Service Broker (a
message processing system that can be used to distribute work across servers), or
Database Mail (which enables your database to send email messages to users), then you
should use managed instance. To check compatibility with an existing on-premises
system, you can install Data Migration Assistant (DMA). This tool analyzes your
databases on SQL Server and reports any issues that could block migration to a
managed instance.

Business benefits

Azure SQL Managed Instance enables a system administrator to spend less time on
administrative tasks because the service either performs them for you or greatly
simplifies those tasks.

Automated tasks include operating system and database management system


software installation and patching, dynamic instance resizing and configuration,
backups, database replication (including system databases), high availability
configuration, and configuration of health and performance monitoring data streams.

Azure SQL Managed Instance has near 100% compatibility with SQL Server Enterprise
Edition, running on-premises.

Azure SQL Managed Instance supports SQL Server Database engine logins and logins
integrated with Microsoft Entra ID. SQL Server Database engine logins include a
username and a password. You must enter your credentials each time you connect to
the server. Microsoft Entra logins use the credentials associated with your current
computer sign-in, and you don't need to provide them each time you connect to the
server.
Azure SQL Database
Azure SQL Database is a PaaS offering from Microsoft. You create a managed database
server in the cloud, and then deploy your databases on this server.

Note

A SQL Database server is a logical construct that acts as a central administrative point
for multiple single or pooled databases, logins, firewall rules, auditing rules, threat
detection policies, and failover groups.

Azure SQL Database is available as a Single Database or an Elastic Pool.

Single Database

This option enables you to quickly set up and run a single SQL Server database. You
create and run a database server in the cloud, and you access your database through
this server. Microsoft manages the server, so all you have to do is configure the
database, create your tables, and populate them with your data. You can scale the
database if you need more storage space, memory, or processing power. By default,
resources are pre-allocated, and you're charged per hour for the resources you've
requested. You can also specify a serverless configuration. In this configuration,
Microsoft creates its own server, which might be shared by databases
belonging to other Azure subscribers. Microsoft ensures the privacy of
your database. Your database automatically scales and resources are allocated or
deallocated as required.

Elastic Pool

This option is similar to Single Database, except that by default multiple databases can
share the same resources, such as memory, data storage space, and processing power
through multiple-tenancy. The resources are referred to as a pool. You create the
pool, and only your databases can use the pool. This model is useful if you have
databases with resource requirements that vary over time, and can help you to reduce
costs. For example, your payroll database might require plenty of CPU power at the end
of each month as you handle payroll processing, but at other times the database might
become much less active. You might have another database that is used for running
reports. This database might become active for several days in the middle of the month
as management reports are generated, but with a lighter load at other times. Elastic
Pool enables you to use the resources available in the pool, and then release the
resources once processing has completed.

Use cases

Azure SQL Database gives you the best option for low cost with minimal administration.
It isn't fully compatible with on-premises SQL Server installations. It's often used in new
cloud projects where the application design can accommodate any required changes to
your applications.

Note

You can use the Data Migration Assistant to detect compatibility issues with your
databases that can impact database functionality in Azure SQL Database. For more
information, see Overview of Data Migration Assistant.

Azure SQL Database is often used for:

 Modern cloud applications that need to use the latest stable SQL Server features.
 Applications that require high availability.
 Systems with a variable load that need the database server to scale up and down
quickly.

Business benefits

Azure SQL Database automatically updates and patches the SQL Server software to
ensure that you're always running the latest and most secure version of the service.

The scalability features of Azure SQL Database ensure that you can increase the
resources available to store and process data without having to perform a costly manual
upgrade.

The service provides high availability guarantees, to ensure that your databases are
available at least 99.995% of the time. Azure SQL Database supports point-in-time
restore, enabling you to recover a database to the state it was in at any point in the past.
Databases can be replicated to different regions to provide more resiliency and disaster
recovery.
Advanced threat protection provides advanced security capabilities, such as vulnerability
assessments, to help detect and remediate potential security problems with your
databases. Threat protection also detects anomalous activities that indicate unusual and
potentially harmful attempts to access or exploit your database. It continuously
monitors your database for suspicious activities, and provides immediate security alerts
on potential vulnerabilities, SQL injection attacks, and anomalous database access
patterns. Threat detection alerts provide details of the suspicious activity, and
recommend action on how to investigate and mitigate the threat.

Auditing tracks database events and writes them to an audit log in your Azure storage
account. Auditing can help you maintain regulatory compliance, understand database
activity, and gain insight into discrepancies and anomalies that might indicate business
concerns or suspected security violations.

SQL Database helps secure your data by providing encryption that protects data that is
stored in the database (at rest) and while it is being transferred across the network (in
motion).

DP-900 Exam EP 09: Deploying Relational Data in Azure

https://www.youtube.com/watch?v=_Lkj93jglf0

You might also like