DBCC SHOWCONTIG returned the following info on the table Im concerne3d about. The “Extent Scan Fragmentation” is the value I’m concerned about as it indicates fragmentation.
DBCC SHOWCONTIG scanning 'GroomHistory' table...
Table: 'GroomHistory' (1253579504); index ID: 0, database ID: 6
TABLE level scan performed.
- Pages Scanned................................: 43547
- Extents Scanned..............................: 13265
- Extent Switches..............................: 13264
- Avg. Pages per Extent........................: 3.3
- Scan Density [Best Count:Actual Count].......: 41.04% [5444:13265]
- Extent Scan Fragmentation ...................: 95.44%
- Avg. Bytes Free per Page.....................: 424.1
- Avg. Page Density (full).....................: 94.76%
After running the query below to try and resolve the fragmentation issue, the result of the DBCC SHOWCONTIG is almost identical. There is no indication that the DBCC query below has failed, am I missing something here? Is it that I will only see the positive change over a period of time?
DBCC DBREINDEX (‘dbo.groomhistory’, ‘’, 80)
Any help much appreciated.
Kind Regards
Bowwow
DBCC SHOWCONTIG scanning 'GroomHistory' table...
Table: 'GroomHistory' (1253579504); index ID: 0, database ID: 6
TABLE level scan performed.
- Pages Scanned................................: 43547
- Extents Scanned..............................: 13265
- Extent Switches..............................: 13264
- Avg. Pages per Extent........................: 3.3
- Scan Density [Best Count:Actual Count].......: 41.04% [5444:13265]
- Extent Scan Fragmentation ...................: 95.44%
- Avg. Bytes Free per Page.....................: 424.1
- Avg. Page Density (full).....................: 94.76%
After running the query below to try and resolve the fragmentation issue, the result of the DBCC SHOWCONTIG is almost identical. There is no indication that the DBCC query below has failed, am I missing something here? Is it that I will only see the positive change over a period of time?
DBCC DBREINDEX (‘dbo.groomhistory’, ‘’, 80)
Any help much appreciated.
Kind Regards
Bowwow