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/sql-data-warehouse/sql-data-warehouse-how-to-configure-workload-importance.md
+10-11Lines changed: 10 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ manager: craigg
7
7
ms.service: synapse-analytics
8
8
ms.subservice:
9
9
ms.topic: conceptual
10
-
ms.date: 02/04/2020
10
+
ms.date: 05/15/2020
11
11
ms.author: rortloff
12
12
ms.reviewer: jrasnick
13
13
ms.custom: azure-synapse
@@ -19,7 +19,7 @@ Setting importance in Synapse SQL for Azure Synapse allows you to influence the
19
19
20
20
## Create a Workload Classifier with Importance
21
21
22
-
Often in a data warehouse scenario you have users who need their queries to run quickly. The user could be executives of the company who need to run reports or the user could be an analyst running an adhoc query. You create a workload classifier to assign importance to a query. The examples below use the new[create workload classifier](/sql/t-sql/statements/create-workload-classifier-transact-sql?toc=/azure/synapse-analytics/sql-data-warehouse/toc.json&bc=/azure/synapse-analytics/sql-data-warehouse/breadcrumb/toc.json&view=azure-sqldw-latest) syntax to create two classifiers. `Membername` can be a single user or a group. Individual user classifications take precedence over role classifications. To find existing data warehouse users, run:
22
+
Often in a data warehouse scenario you have users, on a busy system, who need to run their queries quickly. The user could be executives of the company who need to run reports or the user could be an analyst running an adhoc query. To assign importance, you create a workload classifier and importance is assigned to a query. The examples below use the [create workload classifier](/sql/t-sql/statements/create-workload-classifier-transact-sql?toc=/azure/synapse-analytics/sql-data-warehouse/toc.json&bc=/azure/synapse-analytics/sql-data-warehouse/breadcrumb/toc.json&view=azure-sqldw-latest) syntax to create two classifiers. `Membername` can be a single user or a group. To find existing data warehouse users, run:
23
23
24
24
```sql
25
25
Select name fromsys.sysusers
@@ -28,20 +28,19 @@ Select name from sys.sysusers
28
28
To create a workload classifier, for a user with higher importance run:
29
29
30
30
```sql
31
-
CREATE WORKLOAD CLASSIFIER ExecReportsClassifier
32
-
WITH (WORKLOAD_GROUP ='xlargerc'
33
-
,MEMBERNAME ='name'
34
-
,IMPORTANCE = above_normal);
35
-
31
+
CREATE WORKLOAD CLASSIFIER ExecReportsClassifier
32
+
WITH (WORKLOAD_GROUP ='xlargerc'
33
+
,MEMBERNAME ='name'
34
+
,IMPORTANCE = above_normal);
36
35
```
37
36
38
37
To create a workload classifier for a user running adhoc queries with lower importance run:
0 commit comments