Indexes

The following table lists the types of indexes available in SQL Server and provides links to additional information.

Index type

Description

Additional information

Clustered

A clustered index sorts and stores the data rows of the table or view in order based on the clustered index key. The clustered index is implemented as a B-tree index structure that supports fast retrieval of the rows, based on their clustered index key values.

Clustered and Nonclustered Indexes Described

Create Clustered Indexes

Nonclustered

A nonclustered index can be defined on a table or view with a clustered index or on a heap. Each index row in the nonclustered index contains the nonclustered key value and a row locator. This locator points to the data row in the clustered index or heap having the key value. The rows in the index are stored in the order of the index key values, but the data rows are not guaranteed to be in any particular order unless a clustered index is created on the table.

Clustered and Nonclustered Indexes Described

Create Nonclustered Indexes

Unique

A unique index ensures that the index key contains no duplicate values and therefore every row in the table or view is in some way unique.

Uniqueness can be a property of both clustered and nonclustered indexes.

Create Unique Indexes

Columnstore

An xVelocity memory optimized columnstore index based on vertical partitioning of the data by columns, stored as large objects (LOB).

Columnstore Indexes

Index with included columns

A nonclustered index that is extended to include nonkey columns in addition to the key columns.

Create Indexes with Included Columns

Index on computed columns

An index on a column that is derived from the value of one or more other columns, or certain deterministic inputs.

Indexes on Computed Columns

Filtered

An optimized nonclustered index, especially suited to cover queries that select from a well-defined subset of data. It uses a filter predicate to index a portion of rows in the table. A well-designed filtered index can improve query performance, reduce index maintenance costs, and reduce index storage costs compared with full-table indexes.

Create Filtered Indexes

Spatial

A spatial index provides the ability to perform certain operations more efficiently on spatial objects (spatial data) in a column of the geometry data type. The spatial index reduces the number of objects on which relatively costly spatial operations need to be applied.

Spatial Indexes Overview

XML

A shredded, and persisted, representation of the XML binary large objects (BLOBs) in the xml data type column.

XML Indexes (SQL Server)

Full-text

A special type of token-based functional index that is built and maintained by the Microsoft Full-Text Engine for SQL Server. It provides efficient support for sophisticated word searches in character string data.

Populate Full-Text Indexes

SORT_IN_TEMPDB Option For Indexes

Disable Indexes and Constraints

Enable Indexes and Constraints

Rename Indexes

Set Index Options

Disk Space Requirements for Index DDL Operations

Reorganize and Rebuild Indexes

Specify Fill Factor for an Index

See Also

Concepts

Clustered and Nonclustered Indexes Described