table of contents
VACUUMDB(1) | PostgreSQL 12.21 Documentation | VACUUMDB(1) |
NAME¶
vacuumdb - garbage-collect and analyze a PostgreSQL database
SYNOPSIS¶
vacuumdb [connection-option...] [option...] [ -t | --table table [( column [,...] )] ]... [dbname]
vacuumdb [connection-option...] [option...] -a | --all
DESCRIPTION¶
vacuumdb is a utility for cleaning a PostgreSQL database. vacuumdb will also generate internal statistics used by the PostgreSQL query optimizer.
vacuumdb is a wrapper around the SQL command VACUUM(7). There is no effective difference between vacuuming and analyzing databases via this utility and via other methods for accessing the server.
OPTIONS¶
vacuumdb accepts the following command-line arguments:
-a
--all
[-d] dbname
[--dbname=]dbname
--disable-page-skipping
Note
This option is only available for servers running PostgreSQL 9.6 and later.
-e
--echo
-f
--full
-F
--freeze
-j njobs
--jobs=njobs
vacuumdb will open njobs connections to the database, so make sure your max_connections setting is high enough to accommodate all connections.
Note that using this mode together with the -f (FULL) option might cause deadlock failures if certain system catalogs are processed in parallel.
--min-mxid-age mxid_age
For the purposes of this option, the multixact ID age of a relation is the greatest of the ages of the main relation and its associated TOAST table, if one exists. Since the commands issued by vacuumdb will also process the TOAST table for the relation if necessary, it does not need to be considered separately.
Note
This option is only available for servers running PostgreSQL 9.6 and later.
--min-xid-age xid_age
For the purposes of this option, the transaction ID age of a relation is the greatest of the ages of the main relation and its associated TOAST table, if one exists. Since the commands issued by vacuumdb will also process the TOAST table for the relation if necessary, it does not need to be considered separately.
Note
This option is only available for servers running PostgreSQL 9.6 and later.
-q
--quiet
--skip-locked
Note
This option is only available for servers running PostgreSQL 12 and later.
-t table [ (column
[,...]) ]
--table=table [ (column [,...])
]
Tip
If you specify columns, you probably have to escape the parentheses from the shell. (See examples below.)
-v
--verbose
-V
--version
-z
--analyze
-Z
--analyze-only
--analyze-in-stages
This option is useful to analyze a database that was newly populated from a restored dump or by pg_upgrade. This option will try to create some statistics as fast as possible, to make the database usable, and then produce full statistics in the subsequent stages.
-?
--help
vacuumdb also accepts the following command-line arguments for connection parameters:
-h host
--host=host
-p port
--port=port
-U username
--username=username
-w
--no-password
-W
--password
This option is never essential, since vacuumdb will automatically prompt for a password if the server demands password authentication. However, vacuumdb will waste a connection attempt finding out that the server wants a password. In some cases it is worth typing -W to avoid the extra connection attempt.
--maintenance-db=dbname
ENVIRONMENT¶
PGDATABASE
PGHOST
PGPORT
PGUSER
PG_COLOR
This utility, like most other PostgreSQL utilities, also uses the environment variables supported by libpq (see Section 33.14).
DIAGNOSTICS¶
In case of difficulty, see VACUUM(7) and psql(1) for discussions of potential problems and error messages. The database server must be running at the targeted host. Also, any default connection settings and environment variables used by the libpq front-end library will apply.
NOTES¶
vacuumdb might need to connect several times to the PostgreSQL server, asking for a password each time. It is convenient to have a ~/.pgpass file in such cases. See Section 33.15 for more information.
EXAMPLES¶
To clean the database test:
$ vacuumdb test
To clean and analyze for the optimizer a database named bigdb:
$ vacuumdb --analyze bigdb
To clean a single table foo in a database named xyzzy, and analyze a single column bar of the table for the optimizer:
$ vacuumdb --analyze --verbose --table='foo(bar)' xyzzy
SEE ALSO¶
2024 | PostgreSQL 12.21 |