You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/sql-data-warehouse/release-notes-10-0-10106-0.md
+18-4Lines changed: 18 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: sql-data-warehouse
5
5
ms.service: sql-data-warehouse
6
6
ms.topic: conceptual
7
7
ms.subservice:
8
-
ms.date: 09/18/2019
8
+
ms.date: 11/12/2019
9
9
author: anumjs
10
10
ms.author: anjangsh
11
11
ms.reviewer: jrasnick
@@ -21,11 +21,25 @@ This article summarizes the new features and improvements in the recent releases
21
21
22
22
As new features are rolled out to all regions, check the version deployed to your instance and the latest Azure SQL DW release notes for feature availability. To check your Azure SQL DW version, connect to your data warehouse via SQL Server Management Studio (SSMS) and run `SELECT @@VERSION;` to return the current version of Azure SQL DW.
23
23
24
-
Example output:
24
+
Sample output:
25
25
26
-

26
+

27
27
28
-
Use the date identified to confirm which release has been applied to your Azure SQL DW.
28
+
Use the version identified to confirm which release has been applied to your Azure SQL DW.
29
+
30
+
## October 2019
31
+
32
+
| Service improvements | Details |
33
+
| --- | --- |
34
+
|**Copy (Preview)**|We are excited to announce the public preview of a simple and flexible COPY statement for data ingestion. With only one statement, you can now seamlessly ingest data with additional flexibility and without requiring high privileged users. For more information, see [COPY command documentation](/sql/t-sql/statements/copy-into-transact-sql?view=azure-sqldw-latest).|
35
+
|**Workload Isolation (Preview)**|To support customers as they democratize their data warehouses, we are announcing new features for intelligent workload management. The new [Workload Isolation](/azure/sql-data-warehouse/sql-data-warehouse-workload-isolation) functionality allows you to manage the execution of heterogeneous workloads while providing flexibility and control over data warehouse resources. This leads to improved execution predictability and enhances the ability to satisfy predefined SLAs. </br>In addition to workload isolation, additional options are now available for [Workload Classification](/azure/sql-data-warehouse/sql-data-warehouse-workload-classification). Beyond login classification, the [Create Workload Classifier](/sql/t-sql/statements/create-workload-classifier-transact-sql?view=azure-sqldw-latest) syntax provides the capability to classify requests based on query label, session context and time of day.|
36
+
|**PREDICT (Preview)**|You can now score machine learning models within your data warehouse avoiding the need for large and complex data movement. The T-SQL PREDICT function relies on open model framework and takes data and machine learning model as input to generate predictions.
37
+
|**SSDT CI/CD (GA)**|Today we are excited to announce the General Availability of the [highest requested feature](https://feedback.azure.com/forums/307516-sql-data-warehouse/suggestions/13313247--in-preview-database-project-from-visual-studio-t) for SQL Data Warehouse – SQL Server Data Tools (SSDT) Database projects. This release includes support for SSDT with Visual Studio 2019 along with native platform integration with Azure DevOps providing built-in continuous integration and deployment (CI/CD) capabilities for enterprise level deployments. |
38
+
|**Materialized View (GA)**|A Materialized View persists the data returned from the view definition query and automatically gets updated as data changes in the underlying tables. It improves the performance of complex queries (typically queries with joins and aggregations) while offering simple maintenance operations. For more information, see [Performance tuning with materialized views](/azure/sql-data-warehouse/performance-tuning-materialized-views). Install [SQL Server Management Studio 18.4 or later](https://docs.microsoft.com/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver15) for scripting Materialized Views.|
39
+
|**Dynamic Data Masking (GA)**|Dynamic Data Masking (DDM) prevents unauthorized access to your sensitive data in your data warehouse by obfuscating it on-the-fly in the query results, based on the masking rules you define. For more information, see [SQL Database dynamic data masking](/azure/sql-database/sql-database-dynamic-data-masking-get-started).|
40
+
|**Read Committed Snapshot Isolation (GA)**|You can use ALTER DATABSE to enable or disable snapshot isolation for a user database. To avoid impact to your current workload, you may want to set this option during database maintenance window or wait until there is no other active connection to the database. For more information, see [Alter database set options](/sql/t-sql/statements/alter-database-transact-sql-set-options?view=azure-sqldw-latest).|
41
+
|**Ordered Clustered Columnstore Index (GA)**|Columnstore is a key enabler for storing and efficiently querying large amounts of data. Ordered clustered columnstore indexes further optimize query execution by enabling efficient segment elimination. For more information, see [Performance tuning with ordered clustered columnstore index](/azure/sql-data-warehouse/performance-tuning-ordered-cci).|
42
+
|**Result Set Caching (GA)**|When result set caching is enabled, Azure SQL Data Warehouse automatically caches query results in the user database for repetitive use. This allows subsequent query executions to get results directly from the persisted cache so recomputation is not needed. Result set caching improves query performance and reduces compute resource usage. In addition, queries using cached results set do not use any concurrency slots and thus do not count against existing concurrency limits. For security, users can only access the cached results if they have the same data access permissions as the users creating the cached results. For more information, see [Performance tuning with result set caching](/azure/sql-data-warehouse/performance-tuning-result-set-caching). Applies to version 10.0.10783.0 or higher.|
0 commit comments