Re: transaction ID query - Mailing list pgsql-admin

From Alvaro Herrera
Subject Re: transaction ID query
Date
Msg-id 20070830131248.GB5872@alvh.no-ip.org
Whole thread Raw
In response to transaction ID query  (Kevin Kempter <kevin@kevinkempterllc.com>)
Responses Re: transaction ID query  (Guillaume Lelarge <guillaume@lelarge.info>)
Re: transaction ID query  (Kevin Kempter <kevin@kevinkempterllc.com>)
List pgsql-admin
Kevin Kempter wrote:
> Hi List;
>
> can I run queries to see the following for postgres v 8.1.4:

Update to 8.1.9 *soon* unless you want to be victim of a nasty autovac
bug.  And in case you already were (which you won't know until your
database starts causing you hard-to-fix headaches), I suggest you
connect to template0 and run VACUUM FREEZE for precaution.

> a) where the db is per used transaction ID's (want to avoid a transaction ID
> wrap-around scenario)

select age(datfrozenxid) from pg_database;

> b) a list of tables in the db and the last time they were vacuumed

Examine the pg_stat views, though I am not sure if the vacuum columns
were already in 8.1.  In any case, in 8.1 Xid wraparound is tracked
per-database, so you need database-wide vacuums.  In 8.2 it is per table
so it is easier to keep up to date.

--
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

pgsql-admin by date:

Previous
From: Kevin Kempter
Date:
Subject: transaction ID query
Next
From: Guillaume Lelarge
Date:
Subject: Re: transaction ID query