R
rbm
I understand that append queries, because they interface
differently than other queries, will cause the database to
increase in size everytime they run. I saw this myself in
a database that had a form that was displayed on a
separate monitor and updated by an OnTimer Event Procedure
every 30 seconds. When it "refreshed" it ran seveal
append queries to create a new table and populate it with
new current data. The end result was an increase in
database size (the backend database)of about 100KB every
time it refreshed. Initial database size was about 800kb;
at the end of a 10 hour tournament, it was up over
400,000kb (and I had changed the Timer to go at 90
seconds).
Any other ideas on alternatives to append queries?
My plan was to, on demand, delete all records in a table
and then repopulate it with results of every match in a
tournament. I want to start fresh every time to make sure
that I catch any changes that were made since the last
update.
differently than other queries, will cause the database to
increase in size everytime they run. I saw this myself in
a database that had a form that was displayed on a
separate monitor and updated by an OnTimer Event Procedure
every 30 seconds. When it "refreshed" it ran seveal
append queries to create a new table and populate it with
new current data. The end result was an increase in
database size (the backend database)of about 100KB every
time it refreshed. Initial database size was about 800kb;
at the end of a 10 hour tournament, it was up over
400,000kb (and I had changed the Timer to go at 90
seconds).
Any other ideas on alternatives to append queries?
My plan was to, on demand, delete all records in a table
and then repopulate it with results of every match in a
tournament. I want to start fresh every time to make sure
that I catch any changes that were made since the last
update.