Klatuu said:
I would suggest you just use a query for your form that is filter on
STATUS <> "closed"
Thanks for the reply.
I should have been more specific, but the query I alluded to in my original
post IS filter on Status '<>"closed"'. I think that will help in terms of
some things, but it doesn't address the long-term size concerns I'm facing.
Originally, there was no real size concerns....at least none that would
need addressing for a long time, but I had to add audit trail functionality
and suddenly instead of one entry per issue I could have several. I think a
safe guesstimate (for planning purposes) would be maybe 8 entries per issue
on average. That's based on two entries for the original issue (one in the
tblIssues and one in the audit table), and then 2 per edit thereafter. Also,
any deleted issues would still be represented by AT LEAST two entries in the
audit table.
There's only two ways I can think of to signicantly effect the size given
the parameters I've described (well, maybe three). One, systematically
remove all records from the main access db into some other access db. Two,
figure out if there's any way to move the audit table to another db. I don't
think you can do it, and even if you could this seems like it would only
slightly delay the size issue since much of the size issue is related to the
audit table itself. The possible third choice is to figure out how to
eliminate some of the audit trail entries. For example, an audit entry gets
made whenever you add a new issue to the database. That seems superflous
given the fact that you have the main entry already in the tblIssues and any
subsequent edits are going to record an "edit from" entry that will be a
copy of the orignal entry anyway.
I don't even know if it's that big of a concern, but it sure seems like the
data storage requirements went WAY up with the audit trail addition...
Oh well, have to think some more about it.......thanks for the reply.
CW