About 80,600,000 results
Open links in new tab
  1. sql - Query to check index on a table - Stack Overflow

    Nov 25, 2009 · The use case for this is that I wanted the list of indexes for a named table so I could write a procedure that would dynamically compress all indexes on a table.

  2. SQL Show Indexes - GeeksforGeeks

    Jul 23, 2025 · In this article, we will explain how to use the SQL SHOW INDEXES statement, its role in database optimization, and how to list and view indexes effectively across various database systems.

  3. 4 Ways to List All Indexes in a SQL Server Database

    Sep 22, 2024 · Either way, there may be times where we need to check what indexes we have in our database. In this article, we’ll explore four ways to retrieve information about all indexes in a SQL …

  4. How to get index usage information in SQL Server

    May 8, 2007 · In SQL Server, many new dynamic management objects have been created that allow you insight into a lot of data that was not accessible or just difficult to get in previous versions of SQL …

  5. How to Check Indexes on a Table in SQL - Baeldung

    Oct 25, 2024 · Understanding how to check the existing indexes on a table is essential. In this tutorial, we’ll explore how to check indexes on a table in various database systems: PostgreSQL, MySQL, …

  6. How to Check Index Usage in SQL Server And What to Do With It

    Indexes can be the secret sauce behind fast SQL queries or the hidden reason your inserts and updates are sluggish. They help the database find data faster, but when unused or poorly designed, they eat …

  7. Identify Missing & Unused Indexes in SQL Server

    Dec 19, 2024 · Use this script to identify and rank missing indexes based on SQL Server’s query analysis, prioritizing those with the highest impact. Refine suggestions based on your workload and …

  8. Find Indexes On A Table In SQL Server - My Tec Bits

    Jan 24, 2017 · Finding Indexes On A Table In SQL Server: There are several ways to list the indexes on a table. We'll see few easy methods to find indexes on a table.

  9. sql server - How do you check if a certain index exists in a table ...

    Apr 22, 2010 · For SQL 2008 and newer, a more concise method, coding-wise, to detect index existence is by using the INDEXPROPERTY built-in function: The simplest usage is with the IndexID property: …

  10. Working with Indexes on SSMS – SQLServerCentral

    Apr 21, 2020 · In SQL Server, indexing is a technique used to improve the performance of queries by reducing the amount of data that SQL Server needs to scan. You can think of it like a table of...