Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sp_BlitzIndex.sql
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ IF OBJECT_ID('tempdb..#dm_db_index_operational_stats') IS NOT NULL
is_spatial BIT NOT NULL,
is_NC_columnstore BIT NOT NULL,
is_CX_columnstore BIT NOT NULL,
is_JSON BIT NOT NULL,
is_json BIT NOT NULL,
is_in_memory_oltp BIT NOT NULL ,
is_disabled BIT NOT NULL ,
is_hypothetical BIT NOT NULL ,
Expand Down Expand Up @@ -1499,7 +1499,7 @@ BEGIN TRY
CASE when si.type = 4 THEN 1 ELSE 0 END AS is_spatial,
CASE when si.type = 6 THEN 1 ELSE 0 END AS is_NC_columnstore,
CASE when si.type = 5 then 1 else 0 end as is_CX_columnstore,
CASE when si.type = 9 then 1 else 0 end as is_JSON,
CASE when si.type = 9 then 1 else 0 end as is_json,
CASE when si.data_space_id = 0 then 1 else 0 end as is_in_memory_oltp,
si.is_disabled,
si.is_hypothetical,
Expand Down Expand Up @@ -1562,7 +1562,7 @@ BEGIN TRY
PRINT SUBSTRING(@dsql, 36000, 40000);
END;
INSERT #IndexSanity ( [database_id], [object_id], [index_id], [index_type], [database_name], [schema_name], [object_name],
index_name, is_indexed_view, is_unique, is_primary_key, is_unique_constraint, is_XML, is_spatial, is_NC_columnstore, is_CX_columnstore, is_JSON, is_in_memory_oltp,
index_name, is_indexed_view, is_unique, is_primary_key, is_unique_constraint, is_XML, is_spatial, is_NC_columnstore, is_CX_columnstore, is_json, is_in_memory_oltp,
is_disabled, is_hypothetical, is_padded, fill_factor, filter_definition, [optimize_for_sequential_key], user_seeks, user_scans,
user_lookups, user_updates, last_user_seek, last_user_scan, last_user_lookup, last_user_update,
create_date, modify_date )
Expand Down
Loading