Hi friends
What is the maximum number of index per table?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jignesh TrivediPosted Jan 16, 2012, 11:00 PM
please refer below link
http://blog.sqlauthority.com/2009/06/29/sql-server-maximum-number-of-index-per-table/
Satyapriya NayakPosted Jan 16, 2012, 12:00 PM
For SQL Server 2005:
1 Clustered Index + 249 Nonclustered Index = 250 Index
For SQL Server 2008:
1 Clustered Index + 999 Nonclustered Index = 1000 Index
Please refer the below links
http://msdn.microsoft.com/en-us/library/ms143432(SQL.90).aspx
http://msdn.microsoft.com/en-us/library/ms143432.aspx
Thanks