About 3,910,000 results
Open links in new tab
  1. indexing - What is an index in SQL? - Stack Overflow

    Jun 2, 2010 · These two videos (Clustered vs. Nonclustered Index Structures in SQL Server and Database Design 39 - Indexes (Clustered, Nonclustered, Composite Index) ) are very helpful for …

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

    Apr 22, 2010 · Something like this: SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_NAME …

  3. What is the difference between OFFLINE and ONLINE index rebuild in …

    Dec 30, 2024 · The main differences are: 1) OFFLINE index rebuild is faster than ONLINE rebuild. 2) Extra disk space required during SQL Server online index rebuilds. 3) SQL Server locks acquired …

  4. sql - What are indexes and how can I use them to optimize queries in …

    Mar 9, 2014 · Indexes are a balancing act, every index you add usually will add time to data inserts, updates and deletes but can potentially speed up selects and joins in complex inserts, updates and …

  5. sql - Creating an index on a table variable - Stack Overflow

    May 20, 2009 · In SQL Server 2000 - 2012 indexes on table variables can only be created implicitly by creating a UNIQUE or PRIMARY KEY constraint. The difference between these constraint types are …

  6. sql server - Listing all indexes - Stack Overflow

    3 Here is a script that will return SQL statements to recreate all the indexes in a database.

  7. sql - How does database indexing work? - Stack Overflow

    Given that indexing is so important as your data set increases in size, can someone explain how indexing works at a database-agnostic level? For information on queries to index a field, check out ...

  8. sql server - What do Clustered and Non-Clustered index actually mean ...

    369 In SQL Server, row-oriented storage both clustered and nonclustered indexes are organized as B trees. (Image Source) The key difference between clustered indexes and non clustered indexes is …

  9. How to see indexes for a database or table in MySQL?

    Mar 6, 2011 · SHOW INDEXES FROM database_name.table_name; Note that INDEX and KEYS are the synonyms of the INDEXES, IN is the synonym of the FROM, therefore, you can use these …

  10. sql server - What are the differences between a clustered and a non ...

    Mar 23, 2018 · Both types of index will improve performance when select data with fields that use the index but will slow down update and insert operations. Because of the slower insert and update …