What elements really add to the physical size of a mdb file? I am working on a pretty extensive database and the file is already up to 56 mb - and I only have 63 records in there!
When I am done, I expect to have more queries than anything. I consider myself a knowledgeable newbie who has the best intentions, but I find that I take shortcuts rather than find out the best way to do things. Today for instance, I made 60 queries - each looking for if someone had an equipment item checked out or not (true or false), but there are 30 equipment items... So you get query_eq_item_1_true, query_eq_item_1_false, query_eq_item_2_true, and so on...
I know these lazy measures add up to some of the problem, but is there one thing developers should avoid in an attempt to keep the file size to a minimum?
Thanks!
When I am done, I expect to have more queries than anything. I consider myself a knowledgeable newbie who has the best intentions, but I find that I take shortcuts rather than find out the best way to do things. Today for instance, I made 60 queries - each looking for if someone had an equipment item checked out or not (true or false), but there are 30 equipment items... So you get query_eq_item_1_true, query_eq_item_1_false, query_eq_item_2_true, and so on...
I know these lazy measures add up to some of the problem, but is there one thing developers should avoid in an attempt to keep the file size to a minimum?
Thanks!