File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
articles/synapse-analytics/sql-data-warehouse Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -89,18 +89,17 @@ Check whether your load is making progress by periodically running the following
89
89
SELECT r.[request_id]
90
90
, r.[status]
91
91
, r .resource_class
92
- , r .command
93
- , sum (bytes_processed) AS bytes_processed
94
- , sum (rows_processed) AS rows_processed
92
+ , r .command
93
+ , sum (bytes_processed) AS bytes_processed
94
+ , sum (rows_processed) AS rows_processed
95
95
FROM sys .dm_pdw_exec_requests r
96
96
JOIN sys .dm_pdw_dms_workers w
97
97
ON r.[request_id] = w .request_id
98
98
WHERE [label] = ' COPY: dbo.trip' and session_id <> session_id() and type = ' WRITER'
99
99
GROUP BY r.[request_id]
100
100
, r.[status]
101
101
, r .resource_class
102
- , r .command
103
- , [type];
102
+ , r .command ;
104
103
105
104
```
106
105
You can’t perform that action at this time.
0 commit comments