Re: Database file fragmentation -
05-18-2006
, 07:15 PM
On May 18, 2006, at 4:22 PM, <sergey.maslyakov> wrote:
Hi Michael,
I did not quite understand what is the smallest reusable entity? Is it
a
record, given that a newly inserted record is not bigger in size than
the deleted one? Or, is it a page that contains only deleted records?
Let's say, I have a Btree-indexed table that has fixed-length records.
I
delete random records and insert new ones. Should I expect the new
records to be put in place of the deleted ones; thus, reduce the need
to
salvage the database?
Thanks!
/Sergey
===========================
The smallest resuable entity is a byte. The DB_BTREE access method
does not support fixed length records. The DB_RECNO access method does
support fixed length records but even there allocation on the page is
done on the byte level. |