L
LilMorePlease
I've redesigned a database that's primary purpose is to assign batch numbers
to users. There are two main forms, an Assign Batch form and a Delete Batch
form.
My question pertains moreso to the Delete Batch form. I have MasterBatch
table that contains all of the valid batch numbers and an AssignedBatches
table that keeps track of assigned batches. When a batch is deleted in the
form, the Batch Number stays intact in the MasterBatch table, just the
information associated with the batch gets deleted in teh AssignedBatches
table. The batch numbers are therefore recycled, as a new user can then be
reassigned to it.
I want to keep track of batch history, that being the unassigned batches. I
created an additional table called DeletedBatches and append the data to it
when the user deletes a batch in the Delete Batch form.
I am wondering if this is really the best way to keep track of old data (a
table within the main database) Should I be appending the data to a log
file? I've only heard of log files and don't really know what options I have
for doing something like that.
Comments greatly appreciated.
AA
to users. There are two main forms, an Assign Batch form and a Delete Batch
form.
My question pertains moreso to the Delete Batch form. I have MasterBatch
table that contains all of the valid batch numbers and an AssignedBatches
table that keeps track of assigned batches. When a batch is deleted in the
form, the Batch Number stays intact in the MasterBatch table, just the
information associated with the batch gets deleted in teh AssignedBatches
table. The batch numbers are therefore recycled, as a new user can then be
reassigned to it.
I want to keep track of batch history, that being the unassigned batches. I
created an additional table called DeletedBatches and append the data to it
when the user deletes a batch in the Delete Batch form.
I am wondering if this is really the best way to keep track of old data (a
table within the main database) Should I be appending the data to a log
file? I've only heard of log files and don't really know what options I have
for doing something like that.
Comments greatly appreciated.
AA