Re: transaction ID query

Поиск
Список
Период
Сортировка
Искать
От
Alvaro Herrera
Тема
Re: transaction ID query
Дата
Msg-id
20070830131248.GB5872@alvh.no-ip.org
Ответ на
transaction ID query (Kevin Kempter)
Список
Дерево обсуждения
transaction ID query Kevin Kempter <kevin@kevinkempterllc.com>
Re: transaction ID query Alvaro Herrera <alvherre@commandprompt.com>
Re: transaction ID query Kevin Kempter <kevin@kevinkempterllc.com>
Re: transaction ID query Tom Lane <tgl@sss.pgh.pa.us>
Re: transaction ID query Guillaume Lelarge <guillaume@lelarge.info>
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 по дате отправления
От: Kevin Kempter
Дата:
Сообщение: transaction ID query
От: Guillaume Lelarge
Дата:
Сообщение: Re: transaction ID query
FAQ