K
Karen
I have a log-database where data is added and deleted
based on a timer.
I can specify the size of the log, so when the log
is "full" I delete the oldest record when a new is added.
The adding and deleting makes the database grow untill it
is compacted.
Are there any "good practices" for this kind of procedure?
I thought about not actually adding and deleting - but
just overwrite the oldest record with the new information.
Would that save me space - and how would it affect the
performance?
I know I could just try - but any comments are appreciated.
based on a timer.
I can specify the size of the log, so when the log
is "full" I delete the oldest record when a new is added.
The adding and deleting makes the database grow untill it
is compacted.
Are there any "good practices" for this kind of procedure?
I thought about not actually adding and deleting - but
just overwrite the oldest record with the new information.
Would that save me space - and how would it affect the
performance?
I know I could just try - but any comments are appreciated.