We are using Access 97 and have the following problem. We need to do a lot of single deletes on a table and do this by using a DAO.Querydef object and change the SQL code several times. We use plain SQL code, i.e. we set
qryDef.SQL = "DELETE * FROM table WHERE condition"
qryDef.Execute
We do this roughly 2000 times with different conditions. Durting this process the size of the database "explodes" from a normal 4MB to 62MB. We can compress the database and it shrinks back to 4MB again. What is going on here?
qryDef.SQL = "DELETE * FROM table WHERE condition"
qryDef.Execute
We do this roughly 2000 times with different conditions. Durting this process the size of the database "explodes" from a normal 4MB to 62MB. We can compress the database and it shrinks back to 4MB again. What is going on here?