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

I have a limited exposure to DB and have only used DB as an application programmer. I want to know about Clustered and Non clustered indexes. I googled and what I found was :

A clustered index is a special type of index that reorders the way records in the table are physically stored. Therefore table can have only one clustered index. The leaf nodes of a clustered index contain the data pages. A nonclustered index is a special type of index in which the logical order of the index does not match the physical stored order of the rows on disk. The leaf node of a nonclustered index does not consist of the data pages. Instead, the leaf nodes contain index rows.

What I found in SO was http://stackoverflow.com/questions/91688/what-are-the-differencespros-cons-between-clustered-and-non-clustered-indexes.

I am clueless. Can someone explain this in a simple language?

share|improve this question
Cluster index can be assigned only once to an entity which communicates physically. The non-cluster index can be assigned up to 239 which communicates logically. – user788680 Jun 8 '11 at 6:43

4 Answers

up vote 110 down vote accepted

With a clustered index the rows are stored physically on the disk in the same order as the index. There can therefore be only one clustered index.

With a non clustered index there is a second list that has pointers to the physical rows. You can have many non clustered indexes, although each new index will increase the time it takes to write new records.

It is generally faster to read from a clustered index if you want to get back all the columns. You do not have to go first to the index and then to the table.

Writing to a table with a clustered index can be slower, if there is a need to rearrange the data.

share|improve this answer
4  
You should clarify what you mean by "physically". – Spencer Ruport Aug 9 '09 at 17:26
4  
physically as in the actual bits stored on the disk – Pete Jan 5 '11 at 5:06

A clustered index means you are telling the database to store close values actually close to one another on the disk. This has the benefit of rapid scan / retrieval of records falling into some range of clustered index values.

For example, you have two tables, Customer and Order:

Customer
----------
ID
Name
Address

Order
----------
ID
CustomerID
Price

If you wish to quickly retrieve all orders of one particular customer, you may wish to create a clustered index on the "CustomerID" column of the Order table. This way the records with the same CustomerID will be physically stored close to each other on disk (clustered) which speeds up their retrieval.

P.S. The index on CustomerID will obviously be not unique, so you either need to add a second field to "uniquify" the index or let the database handle that for you but that's another story.

Regarding multiple indexes. You can have only one clustered index per table because this defines how the data is physically arranged. If you wish an analogy, imagine a big room with many tables in it. You can either put these tables to form several rows or pull them all together to form a big conference table, but not both ways at the same time. A table can have other indexes, they will then point to the entries in the clustered index which in its turn will finally say where to find the actual data.

share|improve this answer
11  
+1 good answer with great example. – fastcodejava Sep 22 '10 at 2:27
3  
Best answer ! Your example made my thought process clear ! – GuruC Mar 27 '12 at 16:12

A very simple, non-technical rule-of-thumb would be that clustered indexes are usually used for your primary key (or, at least, a unique column) and that non-clustered are used for other situations (maybe a foreign key). Indeed, SQL Server will by default create a clustered index on your primary key column(s). As you will have learnt, the clustered index relates to the way data is physically sorted on disk, which means it's a good all-round choice for most situations.

share|improve this answer

Find below example of Clustered and Non Clustered Index.

  1. Clustered index are those Index that uniquely Identifies the rows in Sql Table.
  2. One Table can have one Clustered Index.
  3. We can create clustered index by more than one column. Like: create Index index_name(col1, col2, col.....)
  4. By Default Column having Primary Key is already have clustered index.

    Where as

  5. Non - Clustered Index are like a simple indexes those are used just for fast retrieval of data. Not sure to have unique data.
share|improve this answer

protected by Community Feb 13 '12 at 22:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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