Skip to content

Commit

Permalink
#3556 sp_BlitzIndex missing index processing
Browse files Browse the repository at this point in the history
Add filter on database_id to speed processing and reduce chance of throwing errors. Closes #3556.
  • Loading branch information
BrentOzar committed Aug 16, 2024
1 parent a7359ec commit 1976f54
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sp_BlitzIndex.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1879,6 +1879,7 @@ WITH
ON ty.user_type_id = co.user_type_id
WHERE id_inner.index_handle = id.index_handle
AND id_inner.object_id = id.object_id
AND id_inner.database_id = DB_ID(''' + QUOTENAME(@DatabaseName) + N''')
AND cn_inner.IndexColumnType = cn.IndexColumnType
FOR XML PATH('''')
),
Expand Down Expand Up @@ -1916,6 +1917,7 @@ WITH
) x (n)
CROSS APPLY n.nodes(''x'') node(v)
)AS cn
WHERE id.database_id = DB_ID(''' + QUOTENAME(@DatabaseName) + N''')
GROUP BY
id.index_handle,
id.object_id,
Expand Down

0 comments on commit 1976f54

Please sign in to comment.