Skip to content

Instantly share code, notes, and snippets.

@eralston
Created June 14, 2018 16:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eralston/45f8d6e8081a0a40a84725cc1fedbfed to your computer and use it in GitHub Desktop.
Save eralston/45f8d6e8081a0a40a84725cc1fedbfed to your computer and use it in GitHub Desktop.
A Query for listing all indices in a SQL database with their
SELECT
TableName = t.name,
IndexName = ind.name,
IndexId = ind.index_id,
ColumnId = ic.index_column_id,
ColumnName = col.name,
ind.*,
ic.*,
col.*
FROM
sys.indexes ind
INNER JOIN
sys.index_columns ic ON ind.object_id = ic.object_id and ind.index_id = ic.index_id
INNER JOIN
sys.columns col ON ic.object_id = col.object_id and ic.column_id = col.column_id
INNER JOIN
sys.tables t ON ind.object_id = t.object_id
WHERE
ind.is_primary_key = 0
AND ind.is_unique = 0
AND ind.is_unique_constraint = 0
AND t.is_ms_shipped = 0
ORDER BY
t.name, ind.name, ind.index_id, ic.index_column_id;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment