Skip to content

Commit 004fe67

Browse files
authored
T-SQL formatting
1 parent 61946e5 commit 004fe67

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

articles/synapse-analytics/sql-data-warehouse/quickstart-bulk-load-copy-tsql.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,18 +89,17 @@ Check whether your load is making progress by periodically running the following
8989
SELECT r.[request_id]
9090
, r.[status]
9191
, 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
9595
FROM sys.dm_pdw_exec_requests r
9696
JOIN sys.dm_pdw_dms_workers w
9797
ON r.[request_id] = w.request_id
9898
WHERE [label] = 'COPY: dbo.trip' and session_id <> session_id() and type = 'WRITER'
9999
GROUP BY r.[request_id]
100100
, r.[status]
101101
, r.resource_class
102-
, r.command
103-
, [type];
102+
, r.command;
104103

105104
```
106105

0 commit comments

Comments
 (0)