M
mark
Hi.
I have a table that I'm refreshing from an ADO recordset which comes from an
Oracle database.
I want a total refresh on the table... doesn't matter to me whether the
records are deleted, or the table dropped and recreated (though I've read
it's usually bad form to drop and recreate a table that just needs it's
records replaced).
But, the question is... there seems to be some kind of backup going on in
Access. I've these two things (seperately):
CurrentDb.Execute "drop table tblLoadCap"
CurrentDb.Execute "delete from tblLoadCap"
In each case, every time that I run the process, the database size grows by
about 20MB, whereas 20MB is the approximate size of what a single set of the
data should be.
Can someone tell me what command I should execute so that my database does
not just keep growing and growing in size, every time that the table is
refreshed?
Thanks,
Mark
I have a table that I'm refreshing from an ADO recordset which comes from an
Oracle database.
I want a total refresh on the table... doesn't matter to me whether the
records are deleted, or the table dropped and recreated (though I've read
it's usually bad form to drop and recreate a table that just needs it's
records replaced).
But, the question is... there seems to be some kind of backup going on in
Access. I've these two things (seperately):
CurrentDb.Execute "drop table tblLoadCap"
CurrentDb.Execute "delete from tblLoadCap"
In each case, every time that I run the process, the database size grows by
about 20MB, whereas 20MB is the approximate size of what a single set of the
data should be.
Can someone tell me what command I should execute so that my database does
not just keep growing and growing in size, every time that the table is
refreshed?
Thanks,
Mark