Skip to content

Instantly share code, notes, and snippets.

@codenamejason
Created December 6, 2017 14:36
Show Gist options
  • Save codenamejason/2783ef432f3d320cf8411acce97d574d to your computer and use it in GitHub Desktop.
Save codenamejason/2783ef432f3d320cf8411acce97d574d to your computer and use it in GitHub Desktop.
Get the indexes for an object
SELECT *
FROM sys.indexes
WHERE
--name='YourIndexName' AND
object_id = OBJECT_ID('<SCHEMA>.<TABLE>')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment