About 76,500 results
Open links in new tab
  1. How can I quickly detect and resolve SQL Server Index …

    Apr 28, 2017 · Here is a SQL query solution that works in SQL Server 2005 and up, that will let you 1) first find all the indexes that need to be rebuilt or reorganized to reduce fragmentation, …

  2. sql server 2008 - Why is my database still fragmented after I …

    Quote from "Microsoft SQL Server 2000 Index Defragmentation Best Practices": "Fragmentation affects disk I/O. Therefore, focus on the larger indexes because their pages are less likely to …

  3. Microsoft SQL Server 2008 - 99% fragmentation on non-clustered, …

    Apr 29, 2013 · Microsoft SQL Server 2008 - 99% fragmentation on non-clustered, non-unique index Asked 14 years, 11 months ago Modified 12 years, 7 months ago Viewed 9k times

  4. Identify highly fragmented indexes and rebuild for single database ...

    Jan 24, 2018 · I'm looking for a script that will identify highly fragmented indexes on a single DB, and optionally a single table as I think sys.dm_db_index_physical_stats is quite resource …

  5. sql server - Verify this TSQL to find the indexes fragmented over …

    Jan 3, 2016 · You might like to compare your query to the similar one in for SQL Server 2008: -- Get fragmentation info for all indexes above a certain size in the current database --(Query 55) …

  6. sql server - Script for rebuilding and reindexing the fragmented …

    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)?

  7. sql server 2008 - How to prevent daily index fragmentation of 99% ...

    Jun 14, 2012 · I have a highscore table for 100.000 players that is being inserted into 2 times a day with one record per player. At the end of the day the index fragmentation for the indexes in …

  8. sql server - Why index REBUILD does not reduce index …

    35 I have used ALTER INDEX REBUILD to remove index fragmentation. In some cases REBUILD does not seem to remove this fragmentation. What are the reasons why REBUILD does not …

  9. sql server 2008 - Index with high fragmentation percentage

    Oct 21, 2016 · I have a very large table with enormous percentage of index fragmentation( almost 98 % !). Obviously, it needs index rebuild. Main problem is my SQL Server is in Standard …

  10. Fixing Index Fragmentation in SQL Server - Stack Overflow

    Jun 10, 2011 · Here is the fragmentation status on indexed tables: And here is my PageDefinition table: Any suggestion what possible changes I can made in this to low down the fragmentation.