About 411,000 results
Open links in new tab
  1. Script for rebuilding and reindexing the fragmented index?

    Can anyone provide the script for rebuilding and re-indexing the fragmented index when 'avg_fragmentation_in_percent' exceeds certain limits (better if cursor is not used)?

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

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

  4. Reorganise index vs Rebuild Index in Sql Server Maintenance plan

    Aug 11, 2008 · In the SSW Rules To Better SQL Server Databases, there is an example of a full database maintenance plan: SSW. There, they run a Reorganize Index, and then a Rebuild …

  5. When should I rebuild indexes? - Database Administrators Stack …

    Aug 4, 2011 · When should I rebuild the indexes in my relational database (SQL Server)? Is there a case for rebuilding indexes on a regular basis?

  6. SQL Server: What is the difference between Index Rebuilding and …

    May 16, 2009 · Rebuild index - rebuilds one or more indexes for a table in the specified database. Reorganise index - Defragments clustered and secondary indexes of the specified table

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

    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 …

  8. How To Rebuild Index of a specific table in Oracle?

    Jun 24, 2021 · 2 If index (or its partition) is in unusable state and rebuild doesn't help, I'd suggest you to drop the index, insert data (will be faster as Oracle won't have to maintain the index …

  9. How can I rebuild indexes and update stats in MySQL innoDB?

    May 5, 2015 · I have experience with MS SQL server where it is possible and useful to update statistic and rebuild indexes. I can't find such option in MySQL innoDB, is there such option?

  10. Rebuilding an giant index in SQL Server

    Feb 17, 2022 · If the table (or rather: index) is partitioned, then you could consider rebuilding at partition level. Also, since this is a non-clustered index, you could drop and then create the …