About 55 results
Open links in new tab
  1. 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 …

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

    Jul 6, 2011 · 140 Lets say in the employee table, I have created an index (idx_name) on the emp_name column of the table. Do I need to explicitly specify the index name in select clause …

  3. sql server - What do Clustered and Non-Clustered index actually …

    In SQL Server, the primary key constraint automatically creates a clustered index on that particular column. Non-Clustered Index - A non-clustered index doesn’t sort the physical data …

  4. What is the difference between OFFLINE and ONLINE index …

    Dec 30, 2024 · See Online Index Operations. When the process is completed the table is locked for a brief period and the new index replaces the old index. If the index contains LOB columns, …

  5. ¿Para que sirven los indices en SQL server?

    Esta respuesta está totalmente enfocada a SQL Server ya que es del manejador que se pregunta. Existen muchos tipos de índices en SQL Server, pero podemos hablar de 2 …

  6. ¿Cual es la mejor práctica para crear un Index en SQL Server?

    Estoy teniendo problemas con el tiempo de respuesta de los queries que voy ejecutando con el SQL Server. Investigando encontré que una buena práctica es crear índices asociados a los …

  7. sql server - What are the differences between a clustered and a …

    Sep 18, 2008 · 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 …

  8. Rebuild Index in SQL Only On One Table - Stack Overflow

    Apr 28, 2015 · Looking to create a SQL query that rebuilds indexes in SQL on only one table within my database. Can anyone point me in the right direction. Someone earlier suggested …

  9. sql - How to decide when use index on table column - Stack …

    Aug 16, 2012 · When should I use index on table? From how many rows index makes sense? If I have table with constant rows, just edited come columns (not in 'where' clause), makes index …

  10. List of all index & index columns in SQL Server DB

    Apr 20, 2009 · How do I get a list of all index & index columns in SQL Server 2005+? The closest I could get is: select s.name, t.name, i.name, c.name from sys.tables t inner join …