Jump to Section
Whether you're upgrading, migrating, or simply auditing your databases, having an efficient method to compare indexes can save time and avoid potential issues.
This article provides a straightforward T-SQL script to compare indexes between two MSSQL databases.
The script helps you identify missing indexes and differences that could impact performance.
Prerequisites#
- SQL Server Management Studio (SSMS) installed.
- Access to a SQL Server instance.
Step 1: Create Source and Target Databases#
First, let's create two sample databases named SourceDatabase and TargetDatabase.
Step 2: Create Tables and Indexes in Both Databases#
Next, we'll create dbo.Customers tables and indexes in both databases to simulate differences.

Screenshot of SSMS showing the table and index creation in both SourceDatabase and TargetDatabase
Step 3: Compare Indexes Between Source and Target Databases#
Now, we will compare the indexes between the two databases using the script:

Output Explanation and Analysis#
After running the provided T-SQL script, you will see several result sets in SQL Server Management Studio (SSMS).
Let's walk through each result set and understand what it means.
1. Capturing Index Information from Source and Target Databases
When you run the script, the first two parts capture index information from the SourceDatabase and TargetDatabase.
The PRINT statements indicate these actions:
- "Capturing index information from the source database..."
- "Capturing index information from the target database..."
2. Comparison of Indexes
The script performs a full outer join on the indexes from both databases, showing you a detailed comparison.
Analysis:
- The IX_Customers_Email index exists in both databases with identical definitions.
- The IX_Customers_Phone index exists in the SourceDatabase but is missing in the TargetDatabase.
- The IX_Customers_Name index exists in the TargetDatabase but is missing in the SourceDatabase.
3. Identifying Missing Indexes in the Source Database
This result set identifies indexes that are present in the TargetDatabase but missing in the SourceDatabase.
The IX_Customers_Name index is missing in the SourceDatabase.
4. Identifying Missing Indexes in the Target Database
This result set identifies indexes that are present in the SourceDatabase but missing in the TargetDatabase.
The IX_Customers_Phone index is missing in the TargetDatabase.
Step 4: Drop the sample databases (only for tutorial)#
Finally, clean up by dropping the SourceDatabase and TargetDatabase.
Dropping databases in a production environment can result in data loss and service interruption. The steps to drop the databases are included here for tutorial purposes only. Ensure you have proper backups and authorization before performing such operations in a live environment.
Keep Your Databases Running Smoothly#
This simple T-SQL script makes comparing indexes between two databases easy.
It helps you spot discrepancies and address them quickly.
Hopefully, this automated approach saves time and ensures your databases are always in top shape.
👉You can find the code on GitHub.