Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#3556 sp_BlitzIndex missing index processing #3557

Merged
merged 1 commit into from
Aug 16, 2024
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
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