About 766,000 results
Open links in new tab
  1. SQL Server index structure and concepts - SQL Shack

    Mar 19, 2018 · In this article, we'll go through the structure of the SQL Server index which is considered the most important factor of the performance tuning process.

  2. SQL Server and Azure SQL index architecture and design guide

    Nov 22, 2024 · Learn about designing efficient indexes in SQL Server and Azure SQL to achieve good database and application performance. Read about index architecture and best practices.

  3. Indexes - SQL Server | Microsoft Learn

    Nov 22, 2024 · Hash indexes consume a fixed amount of memory, which is a function of the bucket count. 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.

  4. Clustered and nonclustered indexes - SQL Server | Microsoft Learn

    Nov 22, 2024 · SQL Server automatically creates indexes when PRIMARY KEY and UNIQUE constraints are defined on table columns. For example, when you create a table with a UNIQUE constraint, Database Engine automatically creates a nonclustered index.

  5. SQL Server indexes – series intro - SQL Shack

    Jun 29, 2018 · We will go through the different types of SQL Server indexes (Unique index, Filtered index, Spatial index, XML index), above and beyond Clustered and Non-clustered indexes classification, and when to use them.

  6. SQL Server index design basics and guidelines - SQL Shack

    Apr 5, 2018 · In the previous article of this series, SQL Server Index Structure and Concepts, we described, in detail, the anatomy of QL Server indexes, the B-Tree structure, the properties of the indexes, the main types of indexes and the advantages of using …

  7. Index Internal Structure in SQL Server: Stairway to SQL Server Indexes ...

    Feb 1, 2012 · The structure of index enables SQL Server to quickly access any entry for a specific index key value. Once that entry has been found, SQL Server can: Access the row for that entry.

  8. An Essential Guide to SQL Server Indexes - SQL Server Tutorial

    Indexes are special data structures associated with tables or views that help speed up the query. SQL Server provides two types of indexes: clustered index and non-clustered index. In this section, you will learn everything you need to know about indexes to come up with a good index strategy and optimize your queries.

  9. Indexes in SQL Server with Examples - Dot Net Tutorials

    Whenever you create an index (or indexes) on some column (s) of a table in SQL Server then what happens internally is, it creates a B-Tree structure. In the B-Tree structure, the data is divided into three sections i.e. Root Node, Non-Leaf Nodes, and Leaf Nodes.

  10. SQL Server Index Architecture - Medium

    Aug 1, 2021 · In this article, we are going to lead in the index architecture of the SQL server and talk about index types, design, operations, and options, respectively. An index is database objects...

Refresh