About 2,600,000 results
Open links in new tab
  1. 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 …

  2. indexing - What is an index in SQL? - Stack Overflow

    Jun 2, 2010 · An index is used to speed up the performance of queries. It does this by reducing the number of database data pages that have to be visited/scanned. In SQL Server, a …

  3. indexing - What is a database index? - Stack Overflow

    Mar 6, 2013 · A database index also make it possible to enforce DB constraints. Many DB systems set a index on a set of columns referred to as PRIMARY KEY. Some DB systems …

  4. sql - When should I create database indexes? - Stack Overflow

    When to set index for a table, during table creation or on performance tuning? What are the advantages and disadvantages of indexing?

  5. Multiple Indexes vs Multi-Column Indexes - Stack Overflow

    Having multiple indexes, each on a single column may mean that only one index gets used at all - you will have to refer to the execution plan to see what effects different indexing schemes …

  6. sql - Rebuild all indexes in a Database - Stack Overflow

    Sep 10, 2015 · I have a very large SQL Server 2008 R2 database (1.5TB) and will be copying some data from column to column within the same table. I've been told that the schema has a …

  7. What columns generally make good indexes? - Stack Overflow

    As a follow up to "What are indexes and how can I use them to optimise queries in my database?" where I am attempting to learn about indexes, what columns are good index candidates? …

  8. What is the difference between partitioning and indexing in DB ...

    Mar 25, 2021 · Thats true, and I know in most production cases, we combine indexing together with partitioning anyway, they both work together hand in hand. But my question about the …

  9. mysql - Why and where to use INDEXes - Stack Overflow

    Apr 24, 2015 · What are indexes for, what are they in database? Without index on column user_name system would have to scan the entire Example table on a row-by-row basis to find …

  10. sql - How to use index in select statement? - Stack Overflow

    Jul 6, 2011 · Generally, when you create an index on a table, database will automatically use that index while searching for data in that table. You don't need to do anything about that.