R
Rocky
I'd love to have some advice on designing a DB which I intend to import data
from a CSV on a monthly bases. The structure of the CSV will be the same each
month. The purpose is to check for errors in client services data.
A query will compare the records and return potential errors. However, there
will be times when it appears that there is an error - yet it isn't. (This is
determined manually when someone goes back into the original application's
typed "memo NOTES" to read about it and make the judgment call). So if the
record is OK, I'd need a check a box (or someway to indicating it's OK).
Here's how I'm thinking of building it. Please add your wisdom/ advice.
tbl-ClientServiceData is created to hold CSV data
tbl-ErrorOK is created with PK, FkID (related to tbl-ClientServiceData's pk)
and ErrorOK checkbox defined as a YES/NO field.
New monthly data comes in and gets added to existing data
Once query's have identified potential errors and these are manually
verified, the user will check the ErrorOK checkbox.
Another query will remove all the records which have the ErrorOK checkbox so
the records are removed from sight when it's time to check errors again next
month.
Does this at all sound reasonable? I realize this is quite nebulous but I'm
just hoping someone will understand enough to make sure I'm heading in the
right direction as I build from scratch.
from a CSV on a monthly bases. The structure of the CSV will be the same each
month. The purpose is to check for errors in client services data.
A query will compare the records and return potential errors. However, there
will be times when it appears that there is an error - yet it isn't. (This is
determined manually when someone goes back into the original application's
typed "memo NOTES" to read about it and make the judgment call). So if the
record is OK, I'd need a check a box (or someway to indicating it's OK).
Here's how I'm thinking of building it. Please add your wisdom/ advice.
tbl-ClientServiceData is created to hold CSV data
tbl-ErrorOK is created with PK, FkID (related to tbl-ClientServiceData's pk)
and ErrorOK checkbox defined as a YES/NO field.
New monthly data comes in and gets added to existing data
Once query's have identified potential errors and these are manually
verified, the user will check the ErrorOK checkbox.
Another query will remove all the records which have the ErrorOK checkbox so
the records are removed from sight when it's time to check errors again next
month.
Does this at all sound reasonable? I realize this is quite nebulous but I'm
just hoping someone will understand enough to make sure I'm heading in the
right direction as I build from scratch.