Skip to content

Commit cefc018

Browse files
authored
Update 3-sql-server-linux-features.md
acrolinx
1 parent 4d47a31 commit cefc018

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn-pr/sqlserver/introduction-sql-server-linux/includes/3-sql-server-linux-features.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ALTER DATABASE <database name> SET COMPATIBILITY_LEVEL = 150;
5151

5252
SQL Server on Linux supports advanced security features such as Always Encrypted, row-level security and dynamic data masking to protect data on disk, in memory, or in transit. These features are all supported in all editions, including Standard Edition:
5353

54-
- **Transparent Data Encryption (TDE)** encrypts data-at-rest when it is stored in database files. The data is protected against malicious users both in the database and in backups.
54+
- **Transparent Data Encryption (TDE)** encrypts data-at-rest when it's stored in database files. The data is protected against malicious users both in the database and in backups.
5555

5656
- **Always Encrypted** ensures that only users who own data can view and process it. Users who manage data, like the database administrators, can't view it. If you use Always Encrypted:
5757

@@ -66,7 +66,7 @@ SQL Server on Linux supports advanced security features such as Always Encrypted
6666

6767
- **Dynamic data masking** masks a portion of the data. Four different kinds of masks are available: masking all the data in a column, masking email addresses, random number masking for numerical data, and custom string masking. You could use custom string masking, for example, to mask all but the last four digits in a Social Security Number.
6868

69-
- **Data Discovery and Classification** identifies, labels, and reports on the sensitive data in your databases, such as Personally Identifiable Information. It's a tool within SQL Server Management Studio (SSMS) that makes it easier to comply with data privacy legislation and harden the databases that contain the most valuable data. Data Discovery and Classification is a service that is part of the Advanced Data Security (ADS) package.
69+
- **Data Discovery and Classification** identifies, labels, and reports on the sensitive data in your databases, such as personally identifiable information. It's a tool within SQL Server Management Studio (SSMS) that makes it easier to comply with data privacy legislation and harden the databases that contain the most valuable data. Data Discovery and Classification is a service that is part of the Advanced Data Security (ADS) package.
7070

7171
- **Vulnerability Assessment** identifies vulnerabilities in your databases. Once you're aware of the weaknesses that your server configuration and database designs may cause, you can mitigate them and prevent common attacks. Vulnerability Assessment is another ADS service.
7272

@@ -115,7 +115,7 @@ With PolyBase, you can create an external table in SQL Server. An external table
115115

116116
In machine learning, large datasets are used to model the behavior of some complex system. When a model has been developed that accurately predicts the observed behavior of the system, it's used to predict how that system might behave in the future. Sophisticated libraries of code, often open-source, have been developed that can prepare your dataset, add features to it, train a model, evaluate the accuracy of the trained model, and deploy those models for other clients to call. These libraries are written in the R and Python languages.
117117

118-
SQL Server Machine Learning Services allows you to run these R and Python scripts against the data in your SQL Server databases. You can add the popular machine learning and data science frameworks, including PyTorch, TensorFLow, SciKit-Learn, and others.
118+
SQL Server Machine Learning Services allows you to run these R and Python scripts against the data in your SQL Server databases. You can add the popular machine learning and data science frameworks, including PyTorch, TensorFlow, SciKit-Learn, and others.
119119

120120
> [!NOTE]
121121
> > On Linux operating systems, SQL Server Machine Learning is supported in SQL Server 2019 or later. To use it, you must add extra packages. For example, if you want to use Python for all machine learning code, install the **mssql-mlservices-mlm-py-9.4.7** package. The equivalent package for R is **install mssql-mlservices-mlm-r-9.4.7**.

0 commit comments

Comments
 (0)