Nope its not a medical condition. 
I have created a split database for users to keep control of their daily work targets.
I have 3 tables Import, Old and Current. Data is imported into the database from the system into import, a query works out what cases are missing (finished with) and moves them from current to old, with another query then adding new items to current. This is scheduled to happen every half hour.
However, every time this happens the back end is expanding in file size by about 30mb this happens until it hits the 2gig limit. I then run compact and repair and it brings it down to 5mb again.
Im using 'CurrentDb.Execute "DELETE FROM TBLImportPost", dbFailOnError' to clear out the table before importing, but its as if its not properly deleting them from the DB.
Any ideas would be much appreciated.
Thanks
Chris
I have created a split database for users to keep control of their daily work targets.
I have 3 tables Import, Old and Current. Data is imported into the database from the system into import, a query works out what cases are missing (finished with) and moves them from current to old, with another query then adding new items to current. This is scheduled to happen every half hour.
However, every time this happens the back end is expanding in file size by about 30mb this happens until it hits the 2gig limit. I then run compact and repair and it brings it down to 5mb again.
Im using 'CurrentDb.Execute "DELETE FROM TBLImportPost", dbFailOnError' to clear out the table before importing, but its as if its not properly deleting them from the DB.
Any ideas would be much appreciated.
Thanks
Chris