Re: how many record versions - Mailing list pgsql-general

From Bruno Wolff III
Subject Re: how many record versions
Date
Msg-id 20040523155237.GB25716@wolff.to
Whole thread Raw
In response to how many record versions  (David Garamond <lists@zara.6.isreserved.com>)
List pgsql-general
On Sun, May 23, 2004 at 02:44:31 +0700,
  David Garamond <lists@zara.6.isreserved.com> wrote:
> begin;
> update t set val=val+1; -- 1000 times
> commit;
>
> How many record versions does it create? 1 or 1000? I'm implementing a
> banner counter which is incremented at least 2-3 millions a day. I
> thought I'd cheat by only commiting after every few minutes. Would that
> work or would I still create as many record versions?

You might be better off keeping the counter in its own table and vacuuming
that table very often. It is unlikely that holding transactions open
for several minutes is a good idea. Also if you are doing multiple updates
in a single transaction, you are still going to get multiple rows.

pgsql-general by date:

Previous
From: Bruno Wolff III
Date:
Subject: Re: DB design opinions - Foreign Key usage
Next
From: Tom Lane
Date:
Subject: Re: how many record versions