mde file swells up (Access 2003)

D

DavPet

My front end is an mde file. About 12 people use it. After a few days, the
file size doubles; in a week it is 3 times bigger than it was when I
compiled it. All but one of the data tables are in the backend. The
frontend only has the switchboard table and the usage table in it.
The usage table is small and stores the userd ID and time.

Decompile and compact gets the size back down again.

Why does it grow?
 
T

tina

i'm guessing that your usage table is recording who is currently using the
database, and what time each person opened it? so each time a user opens the
frontend, a record is added to this table, and the record is then deleted
when the user closes the frontend? each time a record is added, the db size
increases. when the record is deleted, that "empty" space is not released
until you compact the db. that probably accounts for at least part of the
frontend bloat.

hth
 
G

Guest

I think you meant to say Compact and repair gets the size back down again,
since you cannot decompile a .mde file.

Have a look at the various KB articles at this link:

http://tinyurl.com/2dmpw

Finally, you should not have users sharing a common front-end file. Each
user should have their own copy installed on their local hard drive. If you
want, you can set the Compact on Close option to help keep the file from
growing too much.


Tom

http://www.access.qbuilt.com/html/expert_contributors.html
__________________________________________

:

My front end is an mde file. About 12 people use it. After a few days, the
file size doubles; in a week it is 3 times bigger than it was when I
compiled it. All but one of the data tables are in the backend. The
frontend only has the switchboard table and the usage table in it.
The usage table is small and stores the userd ID and time.

Decompile and compact gets the size back down again.

Why does it grow?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

create a MDE file 7
Bloating 2
2000 MDE file grow big running under 2007 1
Front End Opens Backend Exclusive 4
Unlocking MDE file 4
Lost Permission in .mde file 1
Access 2007 and MDE 1
Question about mde file 2

Top