Skip to content

Commit

Permalink
Merge pull request #3588 from stone-de-croze/dev
Browse files Browse the repository at this point in the history
INT data type prevents reporting indexes < 1 MB
  • Loading branch information
BrentOzar authored Dec 6, 2024
2 parents 1c318fa + c9b929e commit 91db9a5
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 91db9a5

Please sign in to comment.