In this article we will take a look at how to disable an index in SQL Server. This is a very useful feature which will help you identify whether the index is really useful or not without actually dropping the index.
Advantages of Disabling an Index in SQL Server
Database Administrator can disable an index for a table especially during the times when they are performing performance tuning activities. This feature will help you figure out whether the index present on a table is really useful or not.
The advantage of disabling an index over dropping an index is that when you disable an index for a table the index definition will remain in metadata and at the same time the index statistics are kept ON for non-clustered indexes.
“Disabling a Clustered Index or a Non-Clustered Index on a VIEW will physically delete the Index Data.”
Caveat: If you decide to disable a clustered index on a table then the table will not be available to users but the data will remain intact within the table. However, the table will not be available for any DML operation until you DROP or REBUILT the index.
How to Rebuild Index in SQL Server?
There are different ways in which you can rebuild the index in SQL Server. However the easiest method will be to execute ALTER INDEX REBUILD statement to rebuild an index or execute CREATE INDEX WITH DROP_EXISTING statement to enable a disabled index. In the below demo I will use Sales.Customer table which is available in AdventureWorks2008R2 sample database. For more information see, How to Enable an Index in SQL Server.
Let’s get started and learn in detail different options available to disable an index in SQL Server.
Different Ways to Disable an Index in SQL Server
- Disable Index Using ALTER INDEX … DISABLE Statement
- Disable Index Using SQL Server Management Studio (SSMS)
How to Disable an Index in SQL Server Using SSMS?
1. Connect to Database Instance Using SQL Server Management Studio (SSMS)
2. Expand Databases -> Expand AdventureWorks2008R2 database -> Expand Tables -> Expand Sales.Customer table -> Expand Indexes and the right click the index which you want to disable and click Disable. This will open up Disable Index popup.

3. This will open up Disable Indexes popup as shown in the snippet below.

4. Finally, click OK to disable the index.
How to Disable an Index in SQL Server Using TSQL Script?
To disable an index in SQL Server execute the below TSQL script which will disable IX_Customer_TerritoryIDindex of Sales.Customer table available in AdventureWorks2008R2 sample database.
USE AdventureWorks2008R2
GO
/* Disable Index */
ALTER INDEX [IX_Customer_TerritoryID] ON [Sales].[Customer] DISABLE
GO
How to verify whether index is disabled or not?
Execute the below TSQL script to verify whether the index is disabled or not in SQL Server.
/* verify whether the Index is Disabled or Not? */
SELECT name AS [Index Name]
, type_desc AS [Index Type]
, index_id AS [Index ID]
, CASE IS_DISABLED
WHEN 0 THEN 'Enabled'
ELSE 'Disabled'
END AS [Index Usage]
, FILL_FACTOR AS [Fill Factor]
FROM SYS.INDEXES
WHERE OBJECT_ID = OBJECT_ID('Sales.Customer')
ORDER BY 2
GO

Conclusion
Disabling an index in SQL Server feature will help you figure out whether the index present on a table is really useful or not.
Trending Articles
- SQL SELECT | SQL QUERY | SQL SELECT Statement T-SQL Tutorial with Examples
- Drop Database in SQL Server by Killing Existing Connections
- How to Change SQL Server Login Properties to Enforce Password Policies and Expiration Settings
- Configure Network Drive Visible for SQL Server During Backup and Restore Using SSMS
- SQL Server: How to Find which user deleted the database in SQL Server
- How to Configure TempDB on Local Disk in SQL Server 2012/2014 Failover Cluster to Improve Performance
- How to Restore Analysis Services Database in SQL Server Using SQL Server Management Studio