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 ---------------------------(end of broadcast)--------------------------- TIP 7: You can help support the PostgreSQL project by donating at http://www.postgresql.org/about/donate