There is an access database in which users are able to modify, delete or add new records on a daily basis. <br><br>I have created another database which has links to the tables in the database maintained by the users. I maintain certain tables in this new database via update, delete and append queries. <br><br>I am looking for a way to identify the records that have been affected by the "update", "append" and "delete" queries so that I can periodically create a table that contains only the records that have been added, updated and deleted (the deleted records seem to be somewhat of a problem as they will be absent from the tables when I want to create the file of changes! Perhaps there is a way to save these in a temporary table when the delete query tosses them ?) Any ideas on how to do this would be appreciated.<br><br>Paul