LarryE
Active member
- Local time
- Today, 08:28
- Joined
- Aug 18, 2021
- Messages
- 899
Over the years I have been a member here, many people have recommended "archiving" records rather than deleting them. I have never done that but want to experiment with it. So, I will ask how should you "archive" a record? As far as I can tell. there may be two ways:
For example, I developed a simple project that tracks school room supply quantities on hand. The design looks like this:
Each Classroom may have multiple Halls and each Category may have multiple Supplies. They come together in a SupplyQuantity junction table.
Thank you in advance for any suggestions.
- Append the record to an "archive" table and then delete it from its normal table?
- Create an "Archive" field in the table using a Yes/No Data Type and just leave it showing as "Archived", then disable the ability to change the record using VBA code?
For example, I developed a simple project that tracks school room supply quantities on hand. The design looks like this:
Each Classroom may have multiple Halls and each Category may have multiple Supplies. They come together in a SupplyQuantity junction table.
- I have a Category of Supply named "Test Category" in the Category table.
- There is a single related record in the Supply table called "Test Supply"
- The "Test Supply" record has 4 related records in the SupplyQuantity table. One Quantity for each of 4 Classroom and Hall records.
Thank you in advance for any suggestions.