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/synapse-analytics/get-started-analyze-data-explorer.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
---
2
2
title: 'Quickstart: Get started analyzing with Data Explorer pools (Preview)'
3
-
description: In this quickstart, you'll learn to analyze data with Data Explorer.
3
+
description: In this quickstart, you learn to analyze data with Data Explorer.
4
4
ms.topic: quickstart
5
-
ms.date: 11/18/2022
5
+
ms.date: 12/20/2024
6
6
author: shsagir
7
7
ms.author: shsagir
8
8
ms.reviewer: shsagir
@@ -13,7 +13,7 @@ ms.custom: mode-other
13
13
14
14
# Quickstart: Analyze with Data Explorer (Preview)
15
15
16
-
In this article, you'll learn the basic steps to load and analyze data with Data Explorer for Azure Synapse.
16
+
In this article, you learn the basic steps to load and analyze data with Data Explorer for Azure Synapse.
17
17
18
18
## Create a Data Explorer pool
19
19
@@ -47,8 +47,8 @@ In this article, you'll learn the basic steps to load and analyze data with Data
47
47
48
48
## Ingest sample data and analyze with a simple query
49
49
50
-
1.In Synapse Studio, on the left-side pane, select **Develop**.
51
-
1.Under **KQL scripts**, Select **+** (Add new resource) > **KQL script**. On the right-side pane, you can name your script.
50
+
1.Once your pool is deployed, in the Synapse Studio, on the left-side pane, select **Develop**.
51
+
1. Select **+** (Add new resource) > **KQL script**. On the right-side pane, you can name your script.
52
52
1. In the **Connect to** menu, select *contosodataexplorer*.
53
53
1. In the **Use database** menu, select *TestDatabase*.
54
54
1. Paste in the following command, and select **Run** to create a StormEvents table.
@@ -78,7 +78,7 @@ In this article, you'll learn the basic steps to load and analyze data with Data
78
78
79
79
:::image type="content" source="data-explorer/media/get-started-analyze-data-explorer/sample-query-results.png" alt-text="Results for query run on sample data":::
80
80
81
-
## Next steps
81
+
## Related content
82
82
83
83
- [Tutorial: Use KQL queries](/azure/data-explorer/kusto/query/tutorial?context=/azure/synapse-analytics/context/context&pivots=synapse)
84
84
- [Monitor Data Explorer pools](data-explorer/data-explorer-monitor-pools.md)
# Tutorial: Sentiment analysis with Azure AI services
14
14
15
-
In this tutorial, you'll learn how to easily enrich your data in Azure Synapse Analytics with [Azure AI services](/azure/ai-services/). You'll use the [Azure AI Language](/azure/ai-services/language-service/) text analytics capabilities to perform sentiment analysis.
15
+
In this tutorial, you learn how to enrich your data in Azure Synapse Analytics with [Azure AI services](/azure/ai-services/). You'll use the [Azure AI Language](/azure/ai-services/language-service/) text analytics capabilities to perform sentiment analysis.
16
16
17
-
A user in Azure Synapse can simply select a table that contains a text column to enrich with sentiments. These sentiments can be positive, negative, mixed, or neutral. A probability will also be returned.
17
+
A user in Azure Synapse can select a table that contains a text column to enrich with sentiments. These sentiments can be positive, negative, mixed, or neutral. A probability will also be returned.
18
18
19
19
This tutorial covers:
20
20
@@ -28,7 +28,7 @@ If you don't have an Azure subscription, [create a free account before you begin
28
28
29
29
-[Azure Synapse Analytics workspace](../get-started-create-workspace.md) with an Azure Data Lake Storage Gen2 storage account configured as the default storage. You need to be the *Storage Blob Data Contributor* of the Data Lake Storage Gen2 file system that you work with.
30
30
- Spark pool in your Azure Synapse Analytics workspace. For details, see [Create a Spark pool in Azure Synapse](../quickstart-create-sql-pool-studio.md).
31
-
-Pre-configuration steps described in the tutorial [Configure Azure AI services in Azure Synapse](tutorial-configure-cognitive-services-synapse.md).
31
+
-Preconfiguration steps described in the tutorial:[Configure Azure AI services in Azure Synapse](tutorial-configure-cognitive-services-synapse.md).
32
32
33
33
## Sign in to the Azure portal
34
34
@@ -38,7 +38,9 @@ Sign in to the [Azure portal](https://portal.azure.com/).
38
38
39
39
You'll need a Spark table for this tutorial.
40
40
41
-
1. Download the [FabrikamComments.csv](https://github.com/aghonaim/datasets/blob/master/FabrikamComments.csv) file, which contains a dataset for text analytics.
41
+
1. Download the [FabrikamComments.csv](https://github.com/aghonaim/datasets/blob/master/FabrikamComments.csv) file, which contains a dataset for text analytics.
42
+
43
+
1. In Synapse analytics, open your storage account under **Data** and **Linked**.
42
44
43
45
1. Upload the file to your Azure Synapse storage account in Data Lake Storage Gen2.
44
46
@@ -48,7 +50,7 @@ You'll need a Spark table for this tutorial.
48
50
49
51

50
52
51
-
1.Name the table in the code cell and run the notebook on a Spark pool. Remember to set `header=True`.
53
+
1.Set `header=True` and name the table in the code cell. Then run the notebook on a Spark pool.
52
54
53
55

54
56
@@ -65,11 +67,12 @@ You'll need a Spark table for this tutorial.
65
67
66
68
## Open the Azure AI services wizard
67
69
68
-
1. Right-click the Spark table created in the previous procedure. Select **Machine Learning** > **Predict with a model** to open the wizard.
70
+
1. In the **Workspace** tab on the data page, under your default lake table, right-click the Spark table created in the previous procedure.
71
+
1. Select **Machine Learning** > **Predict with a model** to open the wizard.
69
72
70
73

71
74
72
-
2. A configuration panel appears, and you're asked to select a pre-trained model. Select **Sentiment Analysis**.
75
+
1. A configuration panel appears, and you're asked to select a pretrained model. Select **Sentiment Analysis**.
73
76
74
77

75
78
@@ -94,7 +97,8 @@ The sentiments are returned as **positive**, **negative**, **neutral**, or **mix
94
97
95
98

96
99
97
-
## Next steps
100
+
## Related content
101
+
98
102
-[Tutorial: Anomaly detection with Azure AI services](tutorial-cognitive-services-anomaly.md)
99
103
-[Tutorial: Machine learning model scoring in Azure Synapse dedicated SQL pools](tutorial-sql-pool-model-scoring-wizard.md)
100
104
-[Machine Learning capabilities in Azure Synapse Analytics](what-is-machine-learning.md)
Copy file name to clipboardExpand all lines: articles/synapse-analytics/quickstart-power-bi.md
+15-19Lines changed: 15 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,15 @@ author: jocaplan
5
5
ms.service: azure-synapse-analytics
6
6
ms.topic: quickstart
7
7
ms.subservice: business-intelligence
8
-
ms.date: 10/27/2020
8
+
ms.date: 12/20/2024
9
9
ms.author: jocaplan
10
10
ms.reviewer: whhender
11
11
ms.custom: mode-other
12
12
---
13
13
14
14
# Quickstart: Linking a Power BI workspace to a Synapse workspace
15
15
16
-
In this quickstart, you will learn how to connect a Power BI workspace to an Azure Synapse Analytics workspace to create new Power BI reports and datasets from Synapse Studio.
16
+
In this quickstart, you learn how to connect a Power BI workspace to an Azure Synapse Analytics workspace to create new Power BI reports and datasets from Synapse Studio.
17
17
18
18
If you don't have an Azure subscription, [create a free account before you begin](https://azure.microsoft.com/free/).
19
19
@@ -24,45 +24,41 @@ If you don't have an Azure subscription, [create a free account before you begin
24
24
25
25
## Link Power BI workspace to your Synapse workspace
26
26
27
-
1. Starting from Synapse Studio, click**Manage**.
27
+
1. Starting from Synapse Studio, select**Manage**.
28
28
29
-

29
+
1. Under **External Connections**, select **Linked services**.
30
30
31
-
2. Under **External Connections**, click **Linked services**.

38
34
39
-
4. Click**Power BI** and click**Continue**.
35
+
1. Select**Power BI** and select**Continue**.
40
36
41
37

42
38
43
-
5. Enter a name for the linked service and select a workspace from the dropdown list.
39
+
1. Enter a name for the linked service and select a workspace from the dropdown list.
40
+
41
+
>[!TIP]
42
+
>If the workspace name doesn't load, select **Edit** and then enter your workspace ID. You can find the ID in the URL for the PowerBI workspace: `https://msit.powerbi.com/groups/<workspace id>/`
44
43
45
44

46
45
47
-
6. Click**Create**.
46
+
1. Select**Create**.
48
47
49
48
## View Power BI workspace in Synapse Studio
50
49
51
50
Once your workspaces are linked, you can browse your Power BI datasets, edit/create new Power BI Reports from Synapse Studio.
52
51
53
-
1.Click**Develop**.
52
+
1.Select**Develop**.
54
53
55
-

56
-
57
-
2. Expand Power BI and the workspace you wish to use.
54
+
1. Expand Power BI and the workspace you wish to use.
58
55
59
56

60
57
61
-
New reports can be created clicking**+** at the top of the **Develop** tab. Existing reports can be edited by clicking on the report name. Any saved changes will be written back to the Power BI workspace.
58
+
New reports can be created selecting**+** at the top of the **Develop** tab. Existing reports can be edited by selecting on the report name. Any saved changes are written back to the Power BI workspace.
62
59
63
60

64
61
65
-
66
-
## Next steps
62
+
## Related content
67
63
68
64
Learn more about [creating Power BI report on files stored on Azure Storage](sql/tutorial-connect-power-bi-desktop.md).
Copy file name to clipboardExpand all lines: articles/synapse-analytics/security/gateway-ip-addresses.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
title: Gateway IP addresses
3
3
description: An article that teaches you what are the IP addresses used in different regions.
4
4
ms.service: azure-synapse-analytics
5
-
ms.topic: overview
5
+
ms.topic: concept-article
6
6
ms.subservice: security
7
-
ms.date: 03/23/2023
7
+
ms.date: 12/20/2024
8
8
author: ilijazagorac
9
9
ms.author: ilijazagorac
10
10
ms.custom: references_regions
@@ -14,7 +14,7 @@ ms.custom: references_regions
14
14
15
15
The table below lists the individual Gateway IP addresses and also Gateway IP address ranges per region.
16
16
17
-
Periodically, we will retire Gateways using old hardware and migrate the traffic to new Gateways as per the process outlined at [Azure SQL Database traffic migration to newer Gateways](/azure/azure-sql/database/gateway-migration).
17
+
Periodically, we'll retire Gateways using old hardware and migrate the traffic to new Gateways as per the process outlined at [Azure SQL Database traffic migration to newer Gateways](/azure/azure-sql/database/gateway-migration).
18
18
We strongly encourage customers to move away from relying on **any individual Gateway IP address** (since these will be retired in the future). Instead, allow network traffic to reach both the individual Gateway IP addresses and Gateway IP address subnets in a region.
0 commit comments