Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a query which will list all the indexes in my database. Will this simple code work?

select * 
from sys.indexes

I'm not sure if this is correct or if I need a larger code.

share|improve this question
5  
You could try a bigger font. – mellamokb Jan 3 at 23:20

closed as not a real question by Mitch Wheat, mellamokb, Tom Walters, usr, JohnFx Jan 3 at 23:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 2 down vote accepted

This will actually give you too many objects, as sys.indexes includes HEAPS in addition to nonclustered and clustered indexes. If you do not want HEAPS, go with:

select *
from sys.indexes
where name is not null
share|improve this answer
Thanks for the advice, man! – James Gambino Jan 3 at 23:24

Not the answer you're looking for? Browse other questions tagged or ask your own question.