Re: Transactions

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Leandro Fanzone <leandro(at)hasar(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Transactions
Date: 2000-12-05 15:21:04
Message-ID: 14426.976029664@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Leandro Fanzone <leandro(at)hasar(dot)com> writes:
> BEGIN TRANSACTION
> INSERT INTO test VALUES('any #n');
> COMMIT TRANSACTION

> leaves me with no records inserted at all after an abrupt reset on the
> server.

Are you perhaps starting the postmaster with "-o -F" (no fsync)?
If so, don't use that switch. It buys performance at the cost
of not being secure against server system crashes.

regards, tom lane

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Helge Bahmann 2000-12-05 15:25:20 Re: Transactions
Previous Message Leandro Fanzone 2000-12-05 14:48:12 Re: Transactions