nanscombe
Registered User.
- Local time
- Today, 20:53
- Joined
- Nov 12, 2011
- Messages
- 1,081
For a reporting application I had a separate database on the local drive as a repository for any "temporary" results tables.
I used a piece of code to check its date when the application started and, if it was not created today or didn't exist, I'd create a fresh one.
If it's binned at the beginning of each day its size shouldn't become too much of an issue.
If the success, or failure, of the import can be ascertained that could be added to the table as well.
I used a piece of code to check its date when the application started and, if it was not created today or didn't exist, I'd create a fresh one.
If it's binned at the beginning of each day its size shouldn't become too much of an issue.
The "standard" way of keeping track of process files is to have a table with only ID, Filename, Processdate in it.
If the success, or failure, of the import can be ascertained that could be added to the table as well.
Last edited: