I've to apply a Non-clustered indexing to a particular tables in SQL Server, for complex queries.
Depending on what, and in which scenarios, should I go for the Non-clustered Indexing?
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.
Shubham KumarPosted Feb 10, 2016, 3:36 AM
A clustered index specifies the physical storage order of the table data (this is why there can only be one clustered index per table).If there is no clustered index, inserts will typically be faster since the data doesn't have to be stored in a specific order but can just be appended at the end of the table.On the other hand, index searches on the key column will typically be slower, since the searches cannot use the advantages of the clustered index.