File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
articles/sql-data-warehouse Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ manager: craigg
7
7
ms.service : sql-data-warehouse
8
8
ms.topic : quickstart
9
9
ms.subservice : workload-management
10
- ms.date : 10/29 /2019
10
+ ms.date : 11/21 /2019
11
11
ms.author : rortloff
12
12
ms.reviewer : jrasnick
13
13
ms.custom : seo-lt-2019
@@ -72,19 +72,25 @@ Create a [workload classifier](/sql/t-sql/statements/create-workload-classifier-
72
72
73
73
``` sql
74
74
CREATE WORKLOAD CLASSIFIER [wgcELTLogin]
75
- WITH (WORKLOAD_GROUP = ' ELTLogin '
76
- ,MEMBERNAME = ' DataLoads ' )
75
+ WITH (WORKLOAD_GROUP = ' DataLoads '
76
+ ,MEMBERNAME = ' ELTLogin ' )
77
77
;
78
78
```
79
79
80
- ## View existing workload groups and classifiers
80
+ ## View existing workload groups and classifiers and run-time values
81
81
82
82
``` sql
83
+ -- Workload groups
83
84
SELECT * FROM
84
85
sys .workload_management_workload_groups
85
86
87
+ -- Workload classifiers
86
88
SELECT * FROM
87
89
sys .workload_management_workload_classifiers
90
+
91
+ -- Run-time values
92
+ SELECT * FROM
93
+ sys .dm_workload_management_workload_groups_stats
88
94
```
89
95
90
96
## Clean up resources
You can’t perform that action at this time.
0 commit comments