From f64e9de70a1fc3d3db5c6ea1291aa366610806bd Mon Sep 17 00:00:00 2001 From: Alexey Bochkov Date: Tue, 19 Mar 2019 12:12:17 -0700 Subject: [PATCH] Update partitions-stats.sql --- QueryTemplates/Common Scripts/partitions-stats.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QueryTemplates/Common Scripts/partitions-stats.sql b/QueryTemplates/Common Scripts/partitions-stats.sql index 9aab6d5..2c03542 100644 --- a/QueryTemplates/Common Scripts/partitions-stats.sql +++ b/QueryTemplates/Common Scripts/partitions-stats.sql @@ -12,7 +12,7 @@ SELECT CASE pf.boundary_value_on_right WHEN 1 THEN 'RIGHT' ELSE 'LEFT' END AS Range, - p.rows AS [Rows], + FORMAT(p.rows, 'N0') AS [Rows], p.[data_compression_desc] AS [Compression] FROM sys.partitions AS p JOIN sys.indexes AS i