Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
1k views

How do you measure SQL Fill Factor value

Usually when I'm creating indexes on tables, I generally guess what the Fill Factor should be based on an educated guess of how the table will be used (many reads or many writes). Is there a more ...
4
votes
2answers
241 views

How is fill factor physically allocated?

I've been trawling books online and google incantations trying to find out what fill factor physically is in a leaf-page (SQL Server 2000 and 2005). I understand that its the amount of room left free ...
2
votes
1answer
551 views

Tweaking the Fill Factor to reduce fragmentation

I have an non-clustered index that has ~1000 pages, 95% fragmentation and a FillFactor of '0'. I rebuilt the index on Sunday. A week later, the index has 95% (or so) fragmentation again. Is this an ...
2
votes
1answer
373 views

MySql Index Fill Factor?

How do you specify the Fill Factor when creating an index in MySql?
1
vote
2answers
2k views

How to find out SQL Server table's read/write statistics?

Is there a way to find a statistics on table read and write count on SQL Server 2005/2008? I am specifically looking for DMVs/DMFs without using triggers or audits. The goal here is to find out ...
0
votes
1answer
525 views

Changing fillfactor of exisiting table

Is it possible to change fillfactor of an existing table in PostgreSQL 8.4? Or do i have to create copy of a table with new fillfactor - which is not the best approach because of foreign key problems? ...