Skip to content

Commit 751572b

Browse files
committed
fixed broken links
1 parent 48fcd7f commit 751572b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/synapse-analytics/sql-data-warehouse/quickstart-create-a-workload-classifier-portal.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: azure-synapse
1515

1616
# Quickstart: Create a Synapse SQL pool workload classifier using the Azure portal
1717

18-
In this quickstart, you will create a [workload classifier](sql-data-warehouse-workload-classification.md) for assigning queries to a workload group. The classifier will assign requests from the `ELTLogin` SQL user to the `DataLoads` workload group. Follow the [Quickstart: Configure workload isolation](quickstart-create-a-workload-isolation-portal.md) tutorial to create the `DataLoads` workload group. This tutorial will create a workload classifier with the WLM_LABEL option to help further classify requests correctly. The classifier will assign high [workload importance](sql-data-warehouse-workload-importance.md) to these requests as well.
18+
In this quickstart, you will create a [workload classifier](sql-data-warehouse-workload-classification.md) for assigning queries to a workload group. The classifier will assign requests from the `ELTLogin` SQL user to the `DataLoads` workload group. Follow the [Quickstart: Configure workload isolation](quickstart-configure-workload-isolation-portal.md) tutorial to create the `DataLoads` workload group. This tutorial will create a workload classifier with the WLM_LABEL option to help further classify requests correctly. The classifier will assign high [workload importance](sql-data-warehouse-workload-importance.md) to these requests as well.
1919

2020

2121
If you don't have an Azure subscription, create a [free](https://azure.microsoft.com/free/) account before you begin.
@@ -62,7 +62,7 @@ END
6262
```
6363

6464
## Configure workload classification
65-
Classification allows you to route requests, based on a set of rules, to a workload group. In the [Quickstart: Configure workload isolation](quickstart-create-a-workload-isolation-portal.md) tutorial we created the `DataLoads` workload group. Now you will create a workload classifier to route queries to the `DataLoads` workload group.
65+
Classification allows you to route requests, based on a set of rules, to a workload group. In the [Quickstart: Configure workload isolation](quickstart-configure-workload-isolation-portal.md) tutorial we created the `DataLoads` workload group. Now you will create a workload classifier to route queries to the `DataLoads` workload group.
6666

6767

6868
1. Click **Azure Synapse Analytics (formerly SQL DW)** in the left page of the Azure portal.
@@ -87,12 +87,14 @@ Classification allows you to route requests, based on a set of rules, to a workl
8787
![Click Add](./media/quickstart-create-a-workload-classifier-portal/quickstart-workload-classifier-add-config-portal.png)
8888

8989
## Verify and test classification
90-
Check the [sys.workload_management_workload_classifiers](sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifiers-transact-sql?view=azure-sqldw-latest) catalog view to verify existence of the `ELTLoginDataLoads` classifier.
90+
Check the [sys.workload_management_workload_classifiers](/sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifiers-transact-sql?view=azure-sqldw-latest)
91+
92+
catalog view to verify existence of the `ELTLoginDataLoads` classifier.
9193
```sql
9294
SELECT * FROM sys.workload_management_workload_classifiers WHERE name = 'ELTLoginDataLoads'
9395
```
9496

95-
Check the [sys.workload_management_workload_classifier_details](sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifier-details-transact-sql?view=azure-sqldw-latest) catalog view to verify classifier details.
97+
Check the [sys.workload_management_workload_classifier_details](/sql/relational-databases/system-catalog-views/sys-workload-management-workload-classifier-details-transact-sql?view=azure-sqldw-latest) catalog view to verify classifier details.
9698

9799
```sql
98100
SELECT c.[name], c.group_name, c.importance, cd.classifier_type, cd.classifier_value

0 commit comments

Comments
 (0)