Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the differences between a clustered and a non-clustered index?

share|improve this question
You can only have one clustered index per table. But there are plenty of other differences... – tjrobinson Sep 18 '08 at 11:17
A clustered index actually describes the order in which records are physically stored on the disk, hence the reason you can only have one. A Non-Clustered Index defines a logical order that does not match the physical order on disk. – Josh Sep 18 '08 at 11:19
Clustered basically means that the data is in that phisical order in the table. This is why you can have only one per table. Unclustered means it's "only" a logical order. – Biri Sep 18 '08 at 11:20
@biri what is "logical" order? a Non clustered index stores the index keys in order physically and it stores a pointer to the table, namely the clustered index key. – Stephanie Page Apr 27 '12 at 2:46

11 Answers

up vote 58 down vote accepted

Clustered Index

  • Only one per table
  • Faster to read than non clustered as data is physically stored in index order

Non Clustered Index

  • Can be used many times per table
  • Quicker for insert and update operations than a clustered index

Both types of index will improve performance when select data with fields that use the index but will slow down update and insert operations.

Because of the slower insert and update clustered indexes should be set on a field that is normally incremental ie Id or Timestamp.

SQL Server will normally only use an index if its selectivity is above 95%.

share|improve this answer
3  
There are also storage considerations. When inserting rows into a table with no clustered index, the rows are stored back to back on the page and updating a row may result in the row being moved to the end of table, leaving empty space and fragmenting the table and indexes. – Jeremiah Peschka Sep 18 '08 at 15:44
What does it mean that an index is "faster to read"? How many more x per second can you do? What is x? – Stephanie Page Aug 9 '10 at 22:23
3  
you don't have to care what is x. All you need to know is that for an app with millions of users, x will be significant – Pacerier Jul 23 '11 at 13:42
5  
It's purely dogma. It's not "faster to read because the data is stored in order". It's faster to read because you avoid an index read AND THEN the table read. It's faster to range scan (if that's meaningful) because the data is stored in order. i.e. the clustering factor is perfect. – Stephanie Page Apr 27 '12 at 2:52
Also the idea that 95% of the records need to be unique is a fallacy. Say you have a table with 1,000,000 rows and you index a column with 500,000 keys. 0% are unique but each key returns 2 out of a million rows. This index is absolutely useful regardless that 0% of the records are unique. – Stephanie Page Apr 27 '12 at 3:29

Clustered indexes physically order the data on the disk. This means no extra data is needed for the index, but there can be only one clustered index (obviously). Accessing data using a clustered index is fastest.

All other indexes must be non-clustered. A non-clustered index has a duplicate of the data from the indexed columns kept ordered together with pointers to the actual data rows (pointers to the clustered index if there is one). This means that accessing data through a non-clustered index has to go through an extra layer of indirection. However if you select only the data that's available in the indexed columns you can get the data back directly from the duplicated index data (that's why it's a good idea to SELECT only the columns that you need and not use *)

share|improve this answer
'However if you select only the data that's available in the indexed columns you can get the data back directly from the duplicated index data' - yes that is the important exception to the prefer clustered index heuristic. I guess in this case you essentially have a clustered index, but less data in the table you are querying so potentially it can be read faster off disk. – The Mouth of a Cow Sep 19 '12 at 17:02

Clustered indexes are stored physically on the table. This means they are the fastest and you can only have one clustered index per table.

Non-clustered indexes are stored separately, and you can have as many as you want.

The best option is to set your clustered index on the most used unique column, usually the PK. You should always have a well selected clustered index in your tables, unless a very compelling reason--can't think of a single one, but hey, it may be out there--for not doing so comes up.

share|improve this answer
1  
can you elaborate more on "we should always have a clustered index in our tables" ? without elaboration that statement is simply wrong because of the word always – Pacerier Jul 23 '11 at 13:43
1  
You're right Pacerier, one shouldn't use absolute statements lightly. Though I don't know of a single case when you shouldn't have a well selected clustered index, such case might exist so I've changed my answer to a more generic version. – Santiago Cepas Jul 27 '11 at 10:24

Clustered basically means that the data is in that phisical order in the table. This is why you can have only one per table.

Unclustered means it's "only" a logical order.

share|improve this answer

Pros:

Clustered indexes work great for ranges (e.g. select * from my_table where my_key between @min and @max)

In some conditions, the DBMS will not have to do work to sort if you use an orderby statement.

Cons:

Clustered indexes are can slow down inserts because the physical layouts of the records have to be modified as records are put in if the new keys are not in sequential order.

share|improve this answer

A clustered index actually describes the order in which records are physically stored on the disk, hence the reason you can only have one.

A Non-Clustered Index defines a logical order that does not match the physical order on disk.

share|improve this answer

A clustered index is essentially a sorted copy of the data in the indexed columns.

The main advantage of a clustered index is that when your query (seek) locates the data in the index then no additional IO is needed to retrieve that data.

The overhead of maintaining a clustered index, especially in a frequently updated table, can lead to poor performance and for that reason it may be preferable to create a non-clustered index.

share|improve this answer

A clustered index alters the way that the rows are stored. When you create a clustered index on a column (or a number of columns), SQL server sorts the table’s rows by that column(s). It is like a dictionary, where all words are sorted in alphabetical order in the entire book.

A non-clustered index, on the other hand, does not alter the way the rows are stored in the table. It creates a completely different object within the table that contains the column(s) selected for indexing and a pointer back to the table’s rows containing the data. It is like an index in the last pages of a book, where keywords are sorted and contain the page number to the material of the book for faster reference.

share|improve this answer
Great illustration. – Nick Hodges Jan 4 at 15:37
A quote isn't bad, but for the sake of fairness to the author (and perhaps even legal correctness) you might put a reference to the source into your answer where you copied the answer from: itbully.com/articles/… – Slauma Mar 26 at 18:24

You can only have one clustered index per table. But there are plenty of other differences...

share|improve this answer
Why the downvote? Is this incorrect? – tjrobinson Nov 18 '09 at 11:28
11  
poor attempt at answering the question? – flesh Oct 26 '10 at 14:22

A good explantion to the same question is also found at http://sql-plsql.blogspot.in/2010/06/non-clustered-indexes.html

share|improve this answer

Clustered Index :- 1.There can be only one Clustered index for a table 2.usually made on the primary key 3.The leaf nodes of a clustered index contain the data pages.

Non-Clustered Index 1.There can be only 249 Non-Clustered index for a table 2.usually made on the any key 3.The leaf node of a nonclustered index does not consist of the data pages. Instead, the leaf nodes contain index rows

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.