Skip to content

Commit 4d9a67c

Browse files
authored
Merge pull request #48562 from Potapy4/patch-21
Fix code snippet
2 parents 1645420 + bf44696 commit 4d9a67c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/sql-database/troubleshoot-connectivity-issues-microsoft-azure-sql-database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@ The following steps can either help you work around the problem or provide you w
225225
226226
```sql
227227
SELECT o.name,
228-
a.SUM(p.row_count) AS 'Row Count',
229-
b.SUM(p.reserved_page_count) * 8.0 / 1024 AS 'Table Size (MB)'
228+
SUM(p.row_count) AS 'Row Count',
229+
SUM(p.reserved_page_count) * 8.0 / 1024 AS 'Table Size (MB)'
230230
FROM sys.objects o
231231
JOIN sys.dm_db_partition_stats p on p.object_id = o.object_id
232232
GROUP BY o.name

0 commit comments

Comments
 (0)