GurdeepS
GurdeepS

Reputation: 67223

Indexes on SQL Server table

Is there a limit on the number of indexes a database table can have in SQL Server?

Thanks

Upvotes: 0

Views: 94

Answers (1)

Ralph Shillington
Ralph Shillington

Reputation: 21098

For SQL Server 2008 R2 the Maximum Capacity Specification is here:

There you will see that the 2008 R2 edition allows for 999 non-clustered indexes and one clustered index per table.

Upvotes: 2

Related Questions