by rossum <rossum48@[EMAIL PROTECTED]
>
May 10, 2008 at 11:58 AM
On Fri, 9 May 2008 14:43:03 -0700 (PDT), "BarryJKaplan@[EMAIL PROTECTED]
"
<BarryJKaplan@[EMAIL PROTECTED]
> wrote:
>We have a system at Walgreens cor****ate HQ that allows users to create
>simple forms to be used on the web.
>We have found over the past 2 weeks the some of the records (about 5)
>append to text files are not appending to the end of the last record
>entered rather append over the last or next to last record with the
>new record. It is not a timing issue since the appends occur hours
>apart.
>
>This system is designed in java known around here as "QuickForms".
>
>Any Ideas?
Difficult to be precise without code. I have seen a similar problem
due to unflushed buffers/unclosed files. It might be worth checking
that everything is completely flushed from buffers and actually
written to disc after every transaction.
rossum