On Thu, May 12, 2016 at 7:31 AM, Filho Arrais <[email protected]> wrote: > There is some development to use the vacuum full by scheme? > > Ex: vacuumdb -d postgres -parameter public > > In databases with thousands of tables and multiple scheme, it would be > interesting to have this feature.
No that I know of. The only way to achieve that now is to use a script that fetches the list of tables in schema first and runs VACUUM on those tables individually, as VACUUM cannot be run in a stored procedure. -- Michael -- Sent via pgsql-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
