Database Size grows Exponentially

  • Thread starter Thread starter Margie
  • Start date Start date
M

Margie

I have a table with approx 1 million records which, after
compression, is about 500,000 KB in size. While running
some data manipulations using a recordset (I'm not adding
any fields, just adding data to a field), the database
grows to maximum size and won't complete the operation.
Any idea why the database grows so big? FYI: I"m able to
perform data manipulations using queries, but not
recordsets. THANKS
 
I have a table with approx 1 million records which, after
compression, is about 500,000 KB in size. While running
some data manipulations using a recordset (I'm not adding
any fields, just adding data to a field), the database
grows to maximum size and won't complete the operation.
Any idea why the database grows so big? FYI: I"m able to
perform data manipulations using queries, but not
recordsets. THANKS

I believe that when you edit data in code, Access creates the new
record on disk in addition to keeping the old record. An Update query
is more efficient.
 
Back
Top