Skip to content

Commit

Permalink
Update data type of reserved MB fields in [#dm_db_partition_stats_etc…
Browse files Browse the repository at this point in the history
…] to match similar fields in other temp tables.

BlitzIndex will now report "size" for indexes less than 1 MB.
  • Loading branch information
stone-de-croze committed Oct 24, 2024
1 parent fbc68d6 commit c9b929e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sp_BlitzIndex.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1462,9 +1462,9 @@ BEGIN TRY
, partition_number int
, partition_id bigint
, row_count bigint
, reserved_MB bigint
, reserved_LOB_MB bigint
, reserved_row_overflow_MB bigint
, reserved_MB NUMERIC(29,2)
, reserved_LOB_MB NUMERIC(29,2)
, reserved_row_overflow_MB NUMERIC(29,2)
, lock_escalation_desc nvarchar(60)
, data_compression_desc nvarchar(60)
)
Expand Down

0 comments on commit c9b929e

Please sign in to comment.