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

    Jun 2, 2010 · In SQL Server, a clustered index determines the physical order of data in a table. There can be only one clustered index per table (the clustered index IS the table).

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

    Jul 6, 2011 · For traditional SQL Server, the filters you define in your 'Where' clause should persuade the engine to use any relevant indices... Provided the engine's execution plan can …

  3. 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 …

  4. sql server - Multiple Indexes vs Multi-Column Indexes - Stack …

    In SQL Server 2005, you can also add additional columns to the index that are not part of the key which can eliminate trips to the rest of the row. Having multiple indexes, each on a single …

  5. Speeding up a SQL query with indexes - Stack Overflow

    Jun 16, 2015 · Speeding up a SQL query with indexes Asked 10 years, 4 months ago Modified 10 years, 4 months ago Viewed 39k times

  6. sql - Query to check index on a table - Stack Overflow

    Nov 25, 2009 · I need a query to see if a table already has any indexes on it.

  7. sql server - What columns generally make good indexes? - Stack …

    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. 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 …

  9. How to improve performance for datetime filtering in SQL Server?

    Mar 15, 2013 · The importances to this when indexing on the datetime say for instance '2015-06-05 22:47:20.102' the index has to account for every place within the datetime. This becomes …

  10. sql - When should I use primary key or index? - Stack Overflow

    May 20, 2010 · Also, in the case of SQL Server, if you go with the default options then a Primary Key is created as a clustered index while the unique index (constraint) is created as a non …