DBReindex leaving fragmented extends ??

  • After DBCC DBReindex ('ChgAttrHistoryHistoryDetails') , dbcc updateusage and sp_updatestats DBCC Showcontig still says extendfragmentation 50% for the clustering index ??

    Should I be worried ?

    DBCC SHOWCONTIG  ( 1772637458      )  WITH   TABLERESULTS , ALL_INDEXES

     go

    IndexNameIndexIdLevelPagesRows         
    ChgAttrHistoryHis110243813022677
    ChgAttrHisto82320171763022677

    ScanDensity

    99.122807017543863

    99.260969976905315

    LogicalFragmentationExtentFragmentation
    6,1650,56
    3,5966,94

    DDL :

    CREATE TABLE [ChgAttrHistoryHistoryDetails] (

     [ChgAttrHistoryId] [char] (16) NOT NULL ,

     [FieldId] [int] NOT NULL ,

     [Sequence] [int] NOT NULL ,

     [HistoryDetailsId] [char] (16) NULL ,

     [HistoryDetailsId_1] [char] (16) NULL ,

     CONSTRAINT [ChgAttrHisto823] PRIMARY KEY  NONCLUSTERED

     (

      [ChgAttrHistoryId],

      [FieldId],

      [Sequence]

    &nbsp  ON [PRIMARY]

    ) ON [PRIMARY]

    GO

     CREATE  CLUSTERED  INDEX [ChgAttrHistoryHis1] ON [ChgAttrHistoryHistoryDetails]([HistoryDetailsId]) ON [PRIMARY]

    GO

     

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me

  • you didn't specify the FILLFACTOR option while you do the DBCC DBREINDEX; so, may be, it takes the last fillfactor used and it can be 50 percent...

    Maj

  • thanks for the reply.

    fillfactor is default

    (sql2k sp3a)

    avgFreebytes = 38

    I guess having near 100% pagedensity and near 100% ScanDensity the extendfrag maybe does not matter.

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply