Indexes size

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Ho do I find or calculate the size of an index for a row in a access
database

Regards
Chris Gerhard
 
Ho do I find or calculate the size of an index for a row in a access
database

1) What is "an index for a row"?

2) In general it's not possible to know the size of anything within a mdb
file, nor is it particularly helpful to know it.

3) As a practical solution, you could (a) compact the db, (b) delete the
object, and (c) recompact the db. Probably not very reproducible, though,
and there is some danger in compacting-and-repairing a non-broken database.

HTH


Tim F
 
A >rough< calculation is to sum the actual or average lengths of the indexed
fields, then multiply by the number of records.

But as the other respondent said, this is not useful information. Why do you
want to know it?

HTH,
TC
 
Test
--
T


TC said:
A >rough< calculation is to sum the actual or average lengths of the indexed
fields, then multiply by the number of records.

But as the other respondent said, this is not useful information. Why do you
want to know it?

HTH,
TC
 
Back
Top