Skip to content

Commit 55536ef

Browse files
committed
rebranding
1 parent e23a8b0 commit 55536ef

27 files changed

+207
-151
lines changed

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-load-from-azure-blob-storage-with-polybase.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Load Contoso retail data to a SQL Analytics data warehouse
3-
description: Use PolyBase and T-SQL commands to load two tables from the Contoso retail data into Azure SQL Analytics.
2+
title: Load Contoso retail data to a Synapse SQL data warehouse
3+
description: Use PolyBase and T-SQL commands to load two tables from the Contoso retail data into Synapse SQL.
44
services: synapse-analytics
55
author: kevinvngo
66
manager: craigg
@@ -13,9 +13,9 @@ ms.reviewer: igorstan
1313
ms.custom: seo-lt-2019
1414
---
1515

16-
# Load Contoso retail data to a SQL Analytics data warehouse
16+
# Load Contoso retail data to a Synapse SQL data warehouse
1717

18-
In this tutorial, you learn to use PolyBase and T-SQL commands to load two tables from the Contoso retail data into a SQL Analytics data warehouse.
18+
In this tutorial, you learn to use PolyBase and T-SQL commands to load two tables from the Contoso retail data into a Synapse SQL data warehouse.
1919

2020
In this tutorial you will:
2121

@@ -25,11 +25,11 @@ In this tutorial you will:
2525

2626
## Before you begin
2727

28-
To run this tutorial, you need an Azure account that already has a SQL Analytics data warehouse. If you don't have a data warehouse provisioned, see [Create a data warehouse and set server-level firewall rule](create-data-warehouse-portal.md).
28+
To run this tutorial, you need an Azure account that already has a Synapse SQL data warehouse. If you don't have a data warehouse provisioned, see [Create a data warehouse and set server-level firewall rule](create-data-warehouse-portal.md).
2929

3030
## Configure the data source
3131

32-
PolyBase uses T-SQL external objects to define the location and attributes of the external data. The external object definitions are stored in your SQL Analytics data warehouse. The data is stored externally.
32+
PolyBase uses T-SQL external objects to define the location and attributes of the external data. The external object definitions are stored in your Synapse SQL data warehouse. The data is stored externally.
3333

3434
## Create a credential
3535

@@ -116,7 +116,7 @@ GO
116116

117117
## Create the external tables
118118

119-
Run the following script to create the DimProduct and FactOnlineSales external tables. All you're doing here is defining column names and data types, and binding them to the location and format of the Azure blob storage files. The definition is stored in the SQL Analytics data warehouse and the data is still in the Azure Storage Blob.
119+
Run the following script to create the DimProduct and FactOnlineSales external tables. All you're doing here is defining column names and data types, and binding them to the location and format of the Azure blob storage files. The definition is stored in the data warehouse and the data is still in the Azure Storage Blob.
120120

121121
The **LOCATION** parameter is the folder under the root folder in the Azure Storage Blob. Each table is in a different folder.
122122

@@ -269,7 +269,7 @@ ORDER BY
269269

270270
## Optimize columnstore compression
271271

272-
By default, the SQL Analytics data warehouse stores the table as a clustered columnstore index. After a load completes, some of the data rows might not be compressed into the columnstore. There are different reasons why this can happen. To learn more, see [manage columnstore indexes](sql-data-warehouse-tables-index.md).
272+
By default, the Synapse SQL data warehouse stores the table as a clustered columnstore index. After a load completes, some of the data rows might not be compressed into the columnstore. There are different reasons why this can happen. To learn more, see [manage columnstore indexes](sql-data-warehouse-tables-index.md).
273273

274274
To optimize query performance and columnstore compression after a load, rebuild the table to force the columnstore index to compress all the rows.
275275

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-load-from-azure-data-lake-store.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Tutorial load data from Azure Data Lake Storage'
3-
description: Use PolyBase external tables to load data from Azure Data Lake Storage for SQL analytics.
3+
description: Use PolyBase external tables to load data from Azure Data Lake Storage for Synapse SQL.
44
services: synapse-analytics
55
author: kevinvngo
66
manager: craigg
@@ -13,7 +13,8 @@ ms.reviewer: igorstan
1313
ms.custom: azure-synapse
1414
---
1515

16-
# Load data from Azure Data Lake Storage for SQL Analytics
16+
# Load data from Azure Data Lake Storage for Synapse SQL
17+
1718
This guide outlines how to use PolyBase external tables to load data from Azure Data Lake Storage. Although you can run adhoc queries on data stored in Data Lake Storage, we recommend importing the data for best performance.
1819

1920
> [!NOTE]

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-memory-optimizations-for-columnstore-compression.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ where short-string-columns use string data types of <= 32 bytes and long-string-
8585
Long strings are compressed with a compression method designed for compressing text. This compression method uses a *dictionary* to store text patterns. The maximum size of a dictionary is 16 MB. There is only one dictionary for each long string column in the rowgroup.
8686

8787
For an in-depth discussion of columnstore memory requirements, see the
88-
video [SQL Analytics scaling: configuration and guidance](https://channel9.msdn.com/Events/Ignite/2016/BRK3291).
88+
video [Synapse SQL scaling: configuration and guidance](https://channel9.msdn.com/Events/Ignite/2016/BRK3291).
8989

9090
## Ways to reduce memory requirements
9191

@@ -137,4 +137,4 @@ DWU size and the user resource class together determine how much memory is avail
137137

138138
## Next steps
139139

140-
To find more ways to improve performance for SQL Analytics, see the [Performance overview](cheat-sheet.md).
140+
To find more ways to improve performance for Synapse SQL, see the [Performance overview](cheat-sheet.md).

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-monitor-workload-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Monitor workload - Azure portal
3-
description: Monitor SQL Analytics using the Azure portal
3+
description: Monitor Synapse SQL using the Azure portal
44
services: synapse-analytics
55
author: kevinvngo
66
manager: craigg
@@ -14,7 +14,7 @@ ms.reviewer: jrasnick
1414

1515
# Monitor workload - Azure portal
1616

17-
This article describes how to use the Azure portal to monitor your workload. This includes setting up Azure Monitor Logs to investigate query execution and workload trends using log analytics for [SQL Analytics](https://azure.microsoft.com/blog/workload-insights-with-sql-data-warehouse-delivered-through-azure-monitor-diagnostic-logs-pass/).
17+
This article describes how to use the Azure portal to monitor your workload. This includes setting up Azure Monitor Logs to investigate query execution and workload trends using log analytics for [Synapse SQL](https://azure.microsoft.com/blog/workload-insights-with-sql-data-warehouse-delivered-through-azure-monitor-diagnostic-logs-pass/).
1818

1919
## Prerequisites
2020

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-overview-faq.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Q. What happened to Azure SQL Data Warehouse?
2424

2525
A. Azure Synapse is Azure SQL Data Warehouse (SQL DW) evolved. We've taken the same industry-leading data warehouse to a whole new level of performance and capabilities. You can continue running your existing data warehouse workloads in production with Azure Synapse and automatically benefit from the new capabilities, which are in preview. For more information, see [What is Azure Synapse Analytics](sql-data-warehouse-overview-what-is.md).
2626

27-
Q. What is SQL Analytics?
27+
Q. What is Synapse SQL pool?
2828

29-
A. SQL Analytics refers to the enterprise data warehousing features that are generally available with Azure Synapse. For more information, see, [What is Azure Synapse Analytics](sql-data-warehouse-overview-what-is.md).
29+
A. Synapse SQL pool refers to the enterprise data warehousing features that are generally available with Azure Synapse. For more information, see, [What is Azure Synapse Analytics](sql-data-warehouse-overview-what-is.md).
3030

3131
Q. How do I get started with Azure Synapse?
3232

@@ -43,9 +43,9 @@ First, choose by Compliance title. Then expand Azure in the Microsoft in-scope c
4343

4444
Q. Can I connect Power BI?
4545

46-
A. Yes! Though Power BI supports direct query with Azure Synapse, its not intended for a large number of users or real-time data. To optimize Power BI performance further, consider using Power BI on top of Azure Analysis Services or Analysis Service IaaS.
46+
A. Yes! Though Power BI supports direct query with Azure Synapse, it's not intended for a large number of users or real-time data. To optimize Power BI performance further, consider using Power BI on top of Azure Analysis Services or Analysis Service IaaS.
4747

48-
Q. What are SQL Analytics capacity limits?
48+
Q. What are Synapse SQL pool capacity limits?
4949

5050
A. See our current [capacity limits](sql-data-warehouse-service-capacity-limits.md) page.
5151

@@ -79,17 +79,16 @@ A. Many features are supported. Features that aren't supported can be found in [
7979

8080
## Tooling and administration
8181

82-
Q. Does SQL Analytics support REST APIs?
82+
Q. Does Synapse SQL pool support REST APIs?
8383

84-
A. Yes. Most REST functionality that can be used with SQL Database is also available with SQL Analytics. You can find API information within REST documentation pages or
84+
A. Yes. Most REST functionality that can be used with SQL Database is also available with Synapse SQL pool. You can find API information within REST documentation pages or
8585
[MSDN](https://msdn.microsoft.com/library/azure/mt163685.aspx).
8686

87-
8887
## Loading
8988

9089
Q. What client drivers do you support?
9190

92-
A. Driver support for SQL Analytics can be found on the [Connection Strings](sql-data-warehouse-connection-strings.md) page
91+
A. Driver support for Synapse SQL pool can be found on the [Connection Strings](sql-data-warehouse-connection-strings.md) page
9392

9493
Q: What file formats are supported by PolyBase?
9594

@@ -105,7 +104,8 @@ A: No, PolyBase only interacts with the storage components.
105104

106105
Q: Can I connect to HDI?
107106

108-
A: HDI can use either ADLS or WASB as the HDFS layer. If you have either as your HDFS layer, you can load that data into a SQL Analytics data warehouse. However, you cannot generate pushdown computation to the HDI instance.
107+
A: HDI can use either ADLS or WASB as the HDFS layer. If you have either as your HDFS layer, you can load that data into a Synapse SQL pool. However, you cannot generate pushdown computation to the HDI instance.
109108

110109
## Next steps
110+
111111
For more information on Azure Synapse as a whole, see our [Overview](sql-data-warehouse-overview-faq.md) page.

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-overview-integrate.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Build integrated solutions
3-
description: Solution tools and partners that integrate with a data warehouse provisioned using SQL Analytics.
3+
description: Solution tools and partners that integrate with a Synapse SQL pool.
44
services: synapse-analytics
55
author: mlee3gsd
66
manager: craigg
@@ -13,8 +13,9 @@ ms.reviewer: igorstan
1313
ms.custom: seo-lt-2019
1414
---
1515

16-
# Integrate other services with a SQL Analytics data warehouse
17-
The SQL Analytics capability within Azure Synapse Analytics enables users to integrate with many of the other services in Azure. Using SQL Analytics, you can create a data warehouse via its SQL Pool resource, which can then utilize several additional services, some of which include:
16+
# Integrate other services with a Synapse SQL pool
17+
18+
The Synapse SQL pool capability within Azure Synapse Analytics enables users to integrate with many of the other services in Azure. Using Synapse SQL, you can create a data warehouse via its SQL pool resource, which can then utilize several additional services, some of which include:
1819

1920
* Power BI
2021
* Azure Data Factory

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-overview-manage-security.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: Secure a database
3-
description: Tips for securing a database and developing solutions in the SQL pool resource of SQL Analytics.
4-
services: synapse-analytics
3+
description: Tips for securing a database and developing solutions in a Synapse SQL pool resource.
54
author: julieMSFT
65
manager: craigg
76
ms.service: synapse-analytics
@@ -15,6 +14,7 @@ tags: azure-synapse
1514
---
1615

1716
# Secure a database in Azure Synapse
17+
1818
> [!div class="op_single_selector"]
1919
> * [Security Overview](sql-data-warehouse-overview-manage-security.md)
2020
> * [Authentication](sql-data-warehouse-authentication.md)
@@ -23,9 +23,10 @@ tags: azure-synapse
2323
>
2424
>
2525
26-
This article will walk you through the basics of securing your SQL pool within SQL Analytics. In particular, this article gets you started with resources for limiting access, protecting data, and monitoring activities on a database provisioned using SQL pool.
26+
This article will walk you through the basics of securing your Synapse SQL pool. In particular, this article gets you started with resources for limiting access, protecting data, and monitoring activities on a database provisioned using SQL pool.
2727

2828
## Connection security
29+
2930
Connection Security refers to how you restrict and secure connections to your database using firewall rules and connection encryption.
3031

3132
Firewall rules are used by both the server and the database to reject connection attempts from IP addresses that haven't been explicitly whitelisted. To allow connections from your application or client machine's public IP address, you must first create a server-level firewall rule using the Azure portal, REST API, or PowerShell.
@@ -37,11 +38,12 @@ Azure Synapse Analytics uses server-level IP firewall rules. It doesn't support
3738
Connections to your SQL pool are encrypted by default. Modifying connection settings to disable encryption are ignored.
3839

3940
## Authentication
41+
4042
Authentication refers to how you prove your identity when connecting to the database. SQL pool currently supports SQL Server Authentication with a username and password, and with Azure Active Directory.
4143

4244
When you created the logical server for your database, you specified a "server admin" login with a username and password. Using these credentials, you can authenticate to any database on that server as the database owner, or "dbo" through SQL Server Authentication.
4345

44-
However, as a best practice, your organizations users should use a different account to authenticate. This way you can limit the permissions granted to the application and reduce the risks of malicious activity in case your application code is vulnerable to a SQL injection attack.
46+
However, as a best practice, your organization's users should use a different account to authenticate. This way you can limit the permissions granted to the application and reduce the risks of malicious activity in case your application code is vulnerable to a SQL injection attack.
4547

4648
To create a SQL Server Authenticated user, connect to the **master** database on your server with your server admin login and create a new server login. It's a good idea to also create a user in the master database. Creating a user in master allows a user to log in using tools like SSMS without specifying a database name. It also allows them to use the object explorer to view all databases on a SQL server.
4749

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-overview-manageability-monitoring.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Manageability and monitoring - overview
3-
description: Monitoring and manageability overview for resource utilization, log and query activity, recommendations, and data protection (backup and restore) with SQL pool.
3+
description: Monitoring and manageability overview for resource utilization, log and query activity, recommendations, and data protection (backup and restore) with Synapse SQL pool.
44
services: synapse-analytics
55
author: kevinvngo
66
manager: craigg
@@ -13,9 +13,9 @@ ms.reviewer: igorstan
1313
ms.custom: seo-lt-2019
1414
---
1515

16-
# Manageability and monitoring with SQL pool
16+
# Manageability and monitoring with Synapse SQL pool
1717

18-
SQL Analytics allows you to provision a data warehouse via SQL pool. The articles that follow will help you to manage and monitor your data warehouse. You'll also learn ways to optimize the data warehouse's usage and performance.
18+
Synapse SQL allows you to provision a data warehouse via SQL pool. The articles that follow will help you to manage and monitor your data warehouse. You'll also learn ways to optimize the data warehouse's usage and performance.
1919

2020
## Overview
2121

articles/synapse-analytics/sql-data-warehouse/sql-data-warehouse-overview-what-is.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.reviewer: igorstan
1717
Azure Synapse is a limitless analytics service that brings together enterprise data warehousing and Big Data analytics. It gives you the freedom to query data on your terms, using either serverless on-demand or provisioned resources—at scale. Azure Synapse brings these two worlds together with a unified experience to ingest, prepare, manage, and serve data for immediate BI and machine learning needs
1818

1919
Azure Synapse has four components:
20-
- SQL Analytics: Complete T-SQL based analytics – Generally Available
20+
- Synapse SQL: Complete T-SQL based analytics – Generally Available
2121
- SQL pool (pay per DWU provisioned)
2222
- SQL on-demand (pay per TB processed) – (Preview)
2323
- Spark: Deeply integrated Apache Spark (Preview)
@@ -27,23 +27,23 @@ Azure Synapse has four components:
2727
> [!NOTE]
2828
> To access the preview features of Azure Synapse, request access [here](https://aka.ms/synapsepreview). Microsoft will triage all requests and respond as soon as possible.
2929
30-
## SQL Analytics and SQL pool in Azure Synapse
30+
## Synapse SQL pool in Azure Synapse
3131

32-
SQL Analytics refers to the enterprise data warehousing features that are generally available in Azure Synapse.
32+
Synapse SQL pool refers to the enterprise data warehousing features that are generally available in Azure Synapse.
3333

34-
SQL pool represents a collection of analytic resources that are being provisioned when using SQL Analytics. The size of SQL pool is determined by Data Warehousing Units (DWU).
34+
SQL pool represents a collection of analytic resources that are being provisioned when using Synapse SQL. The size of SQL pool is determined by Data Warehousing Units (DWU).
3535

36-
Import big data with simple [PolyBase](/sql/relational-databases/polybase/polybase-guide?view=sql-server-2017&viewFallbackFrom=azure-sqldw-latest) T-SQL queries, and then use the power of MPP to run high-performance analytics. As you integrate and analyze, SQL Analytics will become the single version of truth your business can count on for faster and more robust insights.
36+
Import big data with simple [PolyBase](/sql/relational-databases/polybase/polybase-guide?view=sql-server-2017&viewFallbackFrom=azure-sqldw-latest) T-SQL queries, and then use the power of MPP to run high-performance analytics. As you integrate and analyze, Synapse SQL pool will become the single version of truth your business can count on for faster and more robust insights.
3737

3838
## Key component of a big data solution
3939

4040
Data warehousing is a key component of a cloud-based, end-to-end big data solution.
4141

4242
![Data warehouse solution](./media/sql-data-warehouse-overview-what-is/data-warehouse-solution.png)
4343

44-
In a cloud data solution, data is ingested into big data stores from a variety of sources. Once in a big data store, Hadoop, Spark, and machine learning algorithms prepare and train the data. When the data is ready for complex analysis, SQL Analytics uses PolyBase to query the big data stores. PolyBase uses standard T-SQL queries to bring the data into SQL Analytics tables.
44+
In a cloud data solution, data is ingested into big data stores from a variety of sources. Once in a big data store, Hadoop, Spark, and machine learning algorithms prepare and train the data. When the data is ready for complex analysis, Synapse SQL pool uses PolyBase to query the big data stores. PolyBase uses standard T-SQL queries to bring the data into Synapse SQL pool tables.
4545

46-
SQL Analytics stores data in relational tables with columnar storage. This format significantly reduces the data storage costs, and improves query performance. Once data is stored, you can run analytics at massive scale. Compared to traditional database systems, analysis queries finish in seconds instead of minutes, or hours instead of days.
46+
Synapse SQL pool stores data in relational tables with columnar storage. This format significantly reduces the data storage costs, and improves query performance. Once data is stored, you can run analytics at massive scale. Compared to traditional database systems, analysis queries finish in seconds instead of minutes, or hours instead of days.
4747

4848
The analysis results can go to worldwide reporting databases or applications. Business analysts can then gain insights to make well-informed business decisions.
4949

0 commit comments

Comments
 (0)