Re: [RESOLVED] Vanished Data
Data retention/purging/audit policies are often overlooked in designing applications/systems, you really don't want an ever increasing storage size for an access database. If policy was thought out beforehand, design could have incorporated audit considerations and data maintenance, e.g. no actual record deletions... info could be transferred to audit tables (requires on delete trigger, update triggers can also be used to log changes for audit purposes), record could be tagged instead so referential integrity maintained rather than cascading deletions to child tables, and so on and so forth.
To get the benefit of triggers along with other features, you might want to consider migrating to another database, e.g. Oracle Database Express (limited to 4GB but has APEX), SQL Server, or MySQL.