Tagged Questions

2
votes
4answers
539 views

SQL Server: Listing all indexes

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? …