Table maintenance: order of operations important? - Mailing list pgsql-admin

From Jeff Boes
Subject Table maintenance: order of operations important?
Date
Msg-id fe92d61c6c9a3eea2baa0b200ea5572f@news.teranews.com
Whole thread Raw
Responses Re: Table maintenance: order of operations important?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-admin
We have a number of tables from which we expire (delete) rows nightly.
Is there any value to ordering the operations, in terms of either table
physical organization or elapsed time?

E.g.,

   DELETE FROM foo WHERE date_expires < now();
   VACUUM ANALYZE foo;
   CLUSTER foo;
   REINDEX TABLE foo;

How would you choose to order these (under 7.4.x) for fastest
turn-around? Does it matter?


--
It may not always be easy, convenient, or politically correct to stand
for truth and right, but it is the right thing to do. Always.
________                                          --M. Russell Ballard
Jeffery Boes <>< mur@qtm.net

pgsql-admin by date:

Previous
From: "Olivier Hubaut"
Date:
Subject: Problem accessing a postgreSQL trough VPN
Next
From: Tom Lane
Date:
Subject: Re: cannot connect to postgres db, strange error!