Skip to content

Commit 24e386e

Browse files
committed
review-2
1 parent fc32241 commit 24e386e

8 files changed

+38
-40
lines changed

learn-pr/sqlserver/introduction-to-sql-server-2022/3-cloud-connected.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ quiz:
3737
explanation: "The self-hosted integrated runtime connects SQL Server to Azure for Azure Synapse Link, but isn't part of SQL Server setup."
3838
- content: "Azure extension for SQL Server"
3939
isCorrect: true
40-
explanation: "The Azure extension for SQL Server can be configured a part of SQL Server 2022 setup and connects SQL Server to Azure for Purview, Azure Active Directory, Microsoft Defender, and pay-as-you-go licensing."
40+
explanation: "The Azure extension for SQL Server can be configured a part of SQL Server 2022 setup and connects SQL Server to Azure for Purview, Microsoft Entra ID, Microsoft Defender, and pay-as-you-go licensing."
4141

learn-pr/sqlserver/introduction-to-sql-server-2022/5-security-scalability-availability.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ quiz:
2626
explanation: "Ledger for SQL Server doesn't encrypt data in user tables, and there isn't a database option called LEDGER. Always Encrypted is a feature to encrypt data end-to-end."
2727
- content: "Built-in auditing and cryptographic hashes of transactions against a ledger table."
2828
isCorrect: true
29-
explanation: "Ledger for SQL Server uses auditing and crypto hashes to provide tamper evidence proof for tables declared as ledger tables."
29+
explanation: "Ledger for SQL Server uses auditing and crypto hashes to provide tamper-evident proof for tables declared as ledger tables."
3030
- content: "Contained availability groups replicate what new types of data in SQL Server 2022 for a normal availability group?"
3131
choices:
3232
- content: "SQL Server Agent Jobs"

learn-pr/sqlserver/introduction-to-sql-server-2022/6-data-virtualization-object-storage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ quiz:
2323
explanation: "SQL Server 2022 provides built-in REST API support for S3 compatible object storage providers"
2424
- content: "Oracle data sources using ODBC"
2525
isCorrect: false
26-
explanation: "SQL Server 2022 does support Oracle data sources, but uses ODBC with Polybase services and not the REST API."
26+
explanation: "SQL Server 2022 does support Oracle data sources, but uses Open Database Connectivity (ODBC) with Polybase services and not the REST API."
2727
- content: "Hadoop data sources using Java"
2828
isCorrect: false
29-
explanation: "Polybase support for Hadoop using Java has been removed in SQL Server 2022."
29+
explanation: "Polybase support for Hadoop using Java is removed in SQL Server 2022."
3030
- content: "SQL Server 2022 data virtualization now supports which file format popular for data lakes?"
3131
choices:
3232
- content: "JSON"
@@ -37,4 +37,4 @@ quiz:
3737
explanation: "Parquet files are natively supported in SQL Server 2022 without the need to create a file format definition."
3838
- content: "HDFS"
3939
isCorrect: false
40-
explanation: "HDFS is a file system and not a file or data format."
40+
explanation: "Hadoop Distributed File System (HDFS) is a file system and not a file or data format."

learn-pr/sqlserver/introduction-to-sql-server-2022/includes/2-deploy-and-feature-difference.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Just like in SQL Server 2017 and SQL Server 2019, SQL Server 2022 can be deploye
66

77
SQL Server 2022 is supported on Windows 10, Windows 11, and Windows Server. SQL Server 2022 for Linux is supported on Red Hat Enterprise Linux 8.0 - 8.5 Server, SUSE Enterprise Linux Server v15, and Ubuntu 20.04 LTS.
88

9-
You can deploy SQL Server using the same methods as in previous versions, such as the Windows graphical setup wizard, command line options, Linux package managers, and container runtime engines, such as Docker. SQL Server 2022 is also available through Azure Virtual Machine marketplace images.
9+
You can deploy SQL Server using the same methods as in previous versions. Including the Windows graphical setup wizard, command line options, Linux package managers, and container runtime engines, such as Docker. SQL Server 2022 is also available through Azure Virtual Machine marketplace images.
1010

1111
## Editions for SQL Server 2022
1212

@@ -32,30 +32,28 @@ SQL Server 2022 paid editions are licensed on individual instances using models
3232

3333
## Feature differences for SQL Server 2022 from previous releases
3434

35-
In future units, you'll learn about all the new features and capabilities in SQL Server 2022 compared to previous releases:
35+
In future units, you learn about all the new features and capabilities in SQL Server 2022 compared to previous releases:
3636

3737
- Cloud connected
3838
- Built-in query intelligence
3939
- Core engine
4040
- Data virtualization
4141
- Transact-SQL (T-SQL) enhancements
4242

43-
Some of the differences for features that have been removed, deprecated, or enhanced from SQL Server in SQL Server 2022 from a perspective of deployment are listed below.
44-
4543
> [!TIP]
4644
> Stay up to date with all the latest release notes at [SQL Server 2022 release notes](https://aka.ms/sqlserver2022releasenotes).
4745
4846
### Features removed or deprecated in SQL Server 2022
4947

50-
The following features have been removed from SQL Server 2022 that were available in previous releases:
48+
The following features that were available in previous releases were removed from SQL Server 2022:
5149

5250
- R, Python, and Java runtimes - R, Python, and Java runtimes are no longer included as part of the setup for SQL Server 2022. The Machine Learning Services feature is still supported, but you'll need to add your own packages that include runtimes you need.
5351

5452
- Polybase Hadoop Connectivity with Java - The Polybase feature with Hadoop connectivity is removed from SQL Server 2022. You can still use Polybase services with ODBC drivers or new REST API based connectors for Azure Blob storage, Azure Data Lake Storage, or S3 compatible object storage.
5553

56-
- Polybase scale out groups - The Polybase scale out group feature has been removed from SQL Server 2022. Queries using external tables or OPENROWSET for data virtualization can take advantage of scale-up processing built into SQL Server.
54+
- Polybase scale out groups - The Polybase scale out group feature is removed from SQL Server 2022. Queries using external tables or OPENROWSET for data virtualization can take advantage of scale-up processing built into SQL Server.
5755

58-
- Machine Learning Server - Machine Learning Server was retired in July of 2022. Therefore, the Machine Learning Server feature has been removed from the SQL Server setup.
56+
- Machine Learning Server - The Machine Learning Server feature was retired in July of 2022 and is removed from the SQL Server setup.
5957

6058
- Distributed Replay - Distributed Replay is no longer available to configure with the setup for SQL Server 2022 on Windows.
6159

learn-pr/sqlserver/introduction-to-sql-server-2022/includes/3-cloud-connected.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SQL Server 2022 connects to the cloud with the following Azure services as seen
66

77
:::image type="content" source="../media/sql-server-2022-cloud-connected.png" alt-text="Diagram showing cloud connected services for SQL Server 2022.":::
88

9-
The SQL Server 2022 engine has been enhanced to integrate with all of these Azure services, but also can require extra software or configuration:
9+
The SQL Server 2022 engine was enhanced to integrate with all of these Azure services, but also can require extra software or configuration:
1010

1111
- Distributed Availability Group - Managed disaster recovery using the Link feature for Azure SQL Managed instance requires setting up a Distributed Availability Group. SQL Server Management Studio (SSMS) provides graphical interfaces to help with this configuration.
1212

@@ -44,7 +44,7 @@ Azure Synapse Link for SQL Server allows you to offload read workloads in Azure
4444

4545
### Challenges with analytics
4646

47-
Azure Synapse has become a popular service for analytics for data of all types. In addition, many customers are looking to offload their read intensive applications from their primary SQL Server, to ensure the primary application has plenty of resources. To use Azure Synapse for this purpose, you'd typically have to build Extract Transform Load (ETL) applications, or use scripts to copy data out of SQL Server to synchronize into Azure Synapse. This method can introduce challenges because the data is often out of date in Azure Synapse and it can be costly to build and maintain ETL applications.
47+
Azure Synapse is now a popular service for analytics for data of all types. In addition, many customers are looking to offload their read intensive applications from their primary SQL Server, to ensure the primary application has plenty of resources. To use Azure Synapse for this purpose, you typically have to build Extract Transform Load (ETL) applications, or use scripts to copy data out of SQL Server to synchronize into Azure Synapse. This method can introduce challenges because the data is often out of date in Azure Synapse and it can be costly to build and maintain ETL applications.
4848

4949
### Solution using Azure Synapse Link for near real-time analytics
5050

@@ -78,7 +78,7 @@ Microsoft Purview allows you to create **access policies** against one or more S
7878

7979
You don't need to create a login or user account for the Microsoft Entra account to apply the access policy. SQL Server 2022 must be configured as an Azure Arc-enabled SQL Server to use Microsoft Purview access policies. The Azure extension for SQL Server stores information on SQL Server. This information allows the database engine to connect to Microsoft Purview to retrieve access policies, cache them inside SQL Server, and apply a policy when a Microsoft Entra account attempts to log into SQL Server.
8080

81-
You can delete the access policy from Microsoft Purview to remove the authentication and authorization of the Microsoft Entra account at any time. You can also apply an access policy across multiple SQL Server 2022 instances, thereby providing a central governance method.
81+
You can delete the access policy from Microsoft Purview to remove the authentication and authorization of the Microsoft Entra account at any time. You can also apply an access policy across multiple SQL Server 2022 instances, to provide a central governance method.
8282

8383
To learn more about Microsoft Purview access policies for SQL Server 2022, see [Provision access by data owner for SQL Server on Azure Arc-enabled servers](https://aka.ms/purviewsqlaccesspolicies).
8484

@@ -111,7 +111,7 @@ Microsoft Defender for SQL is a Defender plan in Microsoft Defender for Cloud, a
111111

112112
### Challenges in protecting SQL Server
113113

114-
Ensuring your SQL Server and data are protected is critical to any business. Security professionals are always looking to find ways to stay ahead of security threats to SQL Server in a robust and reliable fashion.
114+
Ensuring that your SQL Server and data are protected, is critical to any business. Security professionals are always looking to find ways to stay ahead of security threats to SQL Server in a robust and reliable fashion.
115115

116116
### Solutions to protect SQL Server 2022 using Microsoft Defender
117117

0 commit comments

Comments
 (0)