Disable indexes and constraints

Applies to: SQL Server Azure SQL Database Azure SQL Managed Instance

This article describes how to disable an index or constraints in SQL Server by using SQL Server Management Studio or Transact-SQL. Disabling an index prevents user access to the index, and for clustered indexes to the underlying table data. The index definition remains in metadata, and index statistics are kept on nonclustered indexes. Disabling a clustered index on a view or a nonclustered index physically deletes the index data.

Disabling a clustered index on a table prevents access to the data. The data still remains in the table, but is unavailable for data manipulation language (DML) operations until the index is dropped or rebuilt.

Limitations

The index isn't maintained while it's disabled.

The query optimizer doesn't consider the disabled index when creating query execution plans. Also, queries that reference the disabled index with a table hint fail.

You can't create an index that uses the same name as an existing disabled index.

A disabled index can be dropped.

When you disable a unique index, the PRIMARY KEY or UNIQUE constraint and all FOREIGN KEY constraints that reference the indexed columns from other tables are also disabled. When you disable a clustered index, all incoming and outgoing FOREIGN KEY constraints on the underlying table are also disabled. The constraint names are listed in a warning message when the index is disabled. After you rebuild the index, all constraints must be manually enabled by using the ALTER TABLE CHECK CONSTRAINT statement.

Nonclustered indexes are automatically disabled when the associated clustered index is disabled. They can't be enabled until either the clustered index on the table or view is enabled or the clustered index on the table is dropped. Nonclustered indexes must be explicitly enabled, unless the clustered index was enabled by using the ALTER INDEX ALL REBUILD statement.

The ALTER INDEX ALL REBUILD statement rebuilds and enables all disabled indexes on the table, except for disabled indexes on views. Indexes on views must be enabled in a separate ALTER INDEX ALL REBUILD statement.

Disabling a clustered index on a table also disables all clustered and nonclustered indexes on views that reference that table. These indexes must be rebuilt just as those indexes on the referenced table.

The data rows of the disabled clustered index can't be accessed except to drop or rebuild the clustered index.

You can rebuild a disabled nonclustered index online when the table doesn't have a disabled clustered index. However, you must always rebuild a disabled clustered index offline if you use either the ALTER INDEX REBUILD or CREATE INDEX WITH DROP_EXISTING statement. For more information about online index operations, see Perform index operations online.

The CREATE STATISTICS statement can't be successfully executed on a table that has a disabled clustered index.

The AUTO_CREATE_STATISTICS database option creates new statistics on a column when the index is disabled and the following conditions exist:

  • AUTO_CREATE_STATISTICS is set to ON.
  • There are no existing statistics for the column.
  • Statistics are required during query optimization.

If a clustered index is disabled, DBCC CHECKDB can't return information about the underlying table; instead, the statement reports that the clustered index is disabled. DBCC INDEXDEFRAG can't be used to defragment a disabled index; the statement fails with an error message. You can use DBCC DBREINDEX to rebuild a disabled index.

Creating a new clustered index enables previously disabled nonclustered indexes. For more information, see Enable Indexes and Constraints.

If the table is a heap, all nonclustered indexes are rebuilt.

Permissions

To execute ALTER INDEX, at a minimum, ALTER permission on the table or view is required.

Use SQL Server Management Studio

Disable an index

  1. In Object Explorer, select the plus sign to expand the database that contains the table on which you want to disable an index.

  2. Select the plus sign to expand the Tables folder.

  3. Select the plus sign to expand the table on which you want to disable an index.

  4. Select the plus sign to expand the Indexes folder.

  5. Right-click the index you want to disable and select Disable.

    Note

    If the table is open in Design mode, the Disable control isn't available. To proceed, close the table designer and start over.

  6. In the Disable Indexes dialog box, verify that the correct index is in the Indexes to disable grid and select OK.

Disable all indexes on a table

  1. In Object Explorer, select the plus sign to expand the database that contains the table on which you want to disable the indexes.

  2. Select the plus sign to expand the Tables folder.

  3. Select the plus sign to expand the table on which you want to disable the indexes.

  4. Right-click the Indexes folder and select Disable All.

  5. In the Disable Indexes dialog box, verify that the correct indexes are in the Indexes to disable grid and select OK. To remove an index from the Indexes to disable grid, select the index and then press the Delete key.

The following information is available in the Disable Indexes dialog box:

  • Index Name

    Displays the name of the index. During execution, this column also displays an icon representing the status.

  • Table Name

    Displays the name of the table or view that the index was created on.

  • Index Type

    Displays the type of the index: Clustered, Nonclustered, Spatial, or XML.

  • Status

    Displays the status of the disable operation. Possible values after execution are:

    • Blank

      Before execution, the Status is blank.

    • In progress

      Disabling of the indexes has started but isn't complete.

    • Success

      The disable operation completed successfully.

    • Error

      An error was encountered during the index disable operation, and the operation didn't complete successfully.

    • Stopped

      The disable of the index wasn't completed successfully, because the user stopped the operation.

  • Message

    Provides the text of error messages during the disable operation. During execution, errors appear as hyperlinks. The text of the hyperlinks describes the body of the error. The Message column is rarely wide enough to read the full message text. There are two ways to get the full text:

    • Move the mouse pointer over the message cell to display a tooltip with the error text.
    • Select the hyperlink to display a dialog box displaying the full error.

Use Transact-SQL

This article requires the AdventureWorks2022 sample database, which you can download from the Microsoft SQL Server Samples and Community Projects home page.

Disable an index

  1. In Object Explorer, connect to an instance of Database Engine.

  2. On the Standard bar, select New Query.

  3. Copy and paste the following example into the query window and select Execute. This sample disables the IX_Employee_OrganizationLevel_OrganizationNode index on the HumanResources.Employee table.

    USE AdventureWorks2022;
    GO
    
    ALTER INDEX IX_Employee_OrganizationLevel_OrganizationNode
        ON HumanResources.Employee
    DISABLE;
    

Disable all indexes on a table

  1. In Object Explorer, connect to an instance of Database Engine.

  2. On the Standard bar, select New Query.

  3. Copy and paste the following example into the query window and select Execute. This sample disables all indexes on the HumanResources.Employee table.

    USE AdventureWorks2022;
    GO
    
    ALTER INDEX ALL ON HumanResources.Employee
    DISABLE;