Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
Tim
Starting Member
392 Posts |
Posted - 2001-08-15 : 22:37:33
|
Can anyone explain fillfactor for me?I thought it would affect the amount of space used by indexes, but the following output of sp_spaceused is the same regardless of the fillfactor setting.would appreciate help.drop table yakcreate table yak (ID integer not null)create unique index ix on yak (id) with fillfactor = 1exec sp_spaceused 'YAK'name rows reserved data index_size unused -------------------- ----------- ------------------ ------------------ ------------------ ------------------ yak 0 32 KB 8 KB 24 KB 0 KB----------------------------------the smiley needs more exposure |
|
|
|
|
|