Created
April 15, 2019 04:02
-
-
Save jcosmo/63b9483c37ba0db73d9acac4914610b9 to your computer and use it in GitHub Desktop.
Describe indexes on a sql server database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
TableName = s.name + '.' + t.name, | |
IndexName = ind.name, | |
ColumnName = col.name, | |
ind.type_desc, | |
ind.is_unique, | |
ind.has_filter, | |
ind.filter_definition, | |
ic.index_column_id, | |
ic.is_descending_key, | |
ic.is_included_column, | |
ic.key_ordinal, | |
ic.partition_ordinal | |
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 | |
INNER JOIN | |
sys.schemas s on t.schema_id = s.schema_id | |
WHERE | |
ind.is_primary_key = 0 | |
AND ind.is_unique_constraint = 0 | |
AND t.is_ms_shipped = 0 | |
ORDER BY | |
s.name + '.' + 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