Home All Groups Group Topic Archive Search About


Author
15 Nov 2006 9:06 PM
Zack
Is it normal for Index size to be three times the size of its corresponding
table in SQL 2005

Author
15 Nov 2006 9:34 PM
Edgardo Valdez, MCTS, MCITP, MCSD, MCDBA
It does not look normal to me. It may be fragmented

did you run

SELECT * FROM sys.dm_db_index_physical_stats
    (DB_ID(N',<your db name>'), OBJECT_ID(N'<your table table>'), NULL, NULL
, 'DETAILED');

and check the avg_fragmentation_in_percent ?


Show quoteHide quote
"Zack" wrote:

> Is it normal for Index size to be three times the size of its corresponding
> table in SQL 2005
>
>
>
Are all your drivers up to date? click for free checkup

Author
15 Nov 2006 9:54 PM
Ken
Zack wrote:
> Is it normal for Index size to be three times the size of its corresponding
> table in SQL 2005

Its possible for this to occur. If there is a fillfactor set to a low
percentage and the table has little number of columns.

Bookmark and Share