You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Azure/row_groups.sql
+7-5
Original file line number
Diff line number
Diff line change
@@ -19,18 +19,19 @@
19
19
*/
20
20
21
21
/*
22
-
Known Issues & Limitations:
22
+
Known Issues & Limitations:
23
23
24
-
Changes in 1.0.3
25
-
+ Added parameter for showing aggregated information on the whole table, instead of partitioned view as before
24
+
Changes in 1.0.3
25
+
+ Added parameter for showing aggregated information on the whole table, instead of partitioned view as before
26
+
* Changed the name of the @tableNamePattern to @tableName to follow the same standard across all CISL functions
26
27
*/
27
28
28
29
-- Params --
29
30
declare @indexType char(2) =NULL, -- Allows to filter Columnstore Indexes by their type, with possible values (CC for 'Clustered', NC for 'Nonclustered' or NULL for both)
30
31
@compressionType varchar(15) =NULL, -- Allows to filter by the compression type with following values 'ARCHIVE', 'COLUMNSTORE' or NULL for both
31
32
@minTotalRows bigint=000000, -- Minimum number of rows for a table to be included
32
33
@minSizeInGB Decimal(16,3) =0.00, -- Minimum size in GB for a table to be included
33
-
@tableNamePatternnvarchar(256) =NULL, -- Allows to show data filtered down to the specified table name pattern
34
+
@tableNamenvarchar(256) =NULL,-- Allows to show data filtered down to the specified table name pattern
34
35
@schemaName nvarchar(256) =NULL, -- Allows to show data filtered down to the specified schema
35
36
@showPartitionDetails bit=1; -- Allows to show details of each of the available partitions
0 commit comments