Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 177295
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T14:01:47+00:00 2026-05-11T14:01:47+00:00

How do I get a list of all index & index columns in SQL

  • 0

How do I get a list of all index & index columns in SQL Server 2005+? The closest I could get is:

select s.name, t.name, i.name, c.name from sys.tables t inner join sys.schemas s on t.schema_id = s.schema_id inner join sys.indexes i on i.object_id = t.object_id inner join sys.index_columns ic on ic.object_id = t.object_id inner join sys.columns c on c.object_id = t.object_id and         ic.column_id = c.column_id  where i.index_id > 0      and i.type in (1, 2) -- clustered & nonclustered only  and i.is_primary_key = 0 -- do not include PK indexes  and i.is_unique_constraint = 0 -- do not include UQ  and i.is_disabled = 0  and i.is_hypothetical = 0  and ic.key_ordinal > 0  order by ic.key_ordinal 

Which is not exactly what I want.
What I want is, to list all user-defined indexes, (which means no indexes which support unique constraints & primary keys) with all columns (ordered by how do they appear in index definition) plus as much metadata as possible.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T14:01:48+00:00Added an answer on May 11, 2026 at 2:01 pm

    There are two "sys" catalog views you can consult: sys.indexes and sys.index_columns.

    Those will give you just about any info you could possibly want about indices and their columns.

    EDIT: This query’s getting pretty close to what you’re looking for:

    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.is_included_column, ic.key_ordinal; 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Looking to get a list of all the files (commit comments would be nice
How do I get a list of all files (and directories) in a given
How do I get a list of all the tables defined for the database
How do I get a list of all the headings in a word document
How do I get a list of all currently loaded assemblies? Closed as a
Is it possible to get a list of all files modified/added/deleted by a particular
Is there a way to get a list of all the GMarkers that have
has anyone ever tried to get the list of all the movieclips (even the
I'm wondering if there are any simple ways to get a list of all
In MySQL, how do I get a list of all foreign key constraints pointing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.