I'm wondering what the simplest way to list all indexes for all tables in a database is. Should I call sp_helpindex for each table and store the results in a temp table, or is there an easier way? Can anyone explain why constraints are stored in sysobjects but indexes are not?
|
feedback
|
|
You could reference sysindexes Another trick is to look at the text of sp_helpindex to see how it reconstructs information from the underlying tables.
I don't have a reference for this, but I believe constraints are not stored in sysobjects because they are a different kind of thing; sysindexes contains meta-data about objects in sysobjects. | ||||
|
feedback
|
|
Here's an example of the kind of query you need:
This one is somewhat specific to a certain purpose (I use it in a little C# app to find duplicate indexes and format the output so it's actually readable by a human). But you could easily adapt it to your needs. | |||
|
feedback
|
|
If you need more information, here is a nice SQL script, which I use from time to time:
| |||
|
feedback
|
|
In addition to all the answers so far - which works just fine, but are SQL Server specific, using sysobjects or sys.* catalog views - you could also consult the ISO standard INFORMATION_SCHEMA views. These are supported across multiple database vendors, e.g. SQL Server, MySQL, PostgreSQL and more. The one you're most likely looking for is the
which will list out unique, primary key and foreign key constraints - everything that gets turned into an index on SQL Server. Marc | |||
|
feedback
|