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.
|
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.
|
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:
|
|||
|
|