vacuumdb
Garbage-collects and analyzes a database.
vacuumdb
is typically run on system catalog tables. It has no effect when run on HAWQ user tables.
Synopsis
vacuumdb [<connection_options>] [<vacuum_options>] [<database_name>]
vacuumdb [-? | --help]
vacuumdb --version
where:
<connection_options> =
[-h <host> | --host <host>]
[-p <port> | --port <port>]
[-U <username> | --username <username>]
[-w | --no-password]
[-W | --password]
<vacuum_options> =
[(-a | --all) | (-d <dbname> | --dbame <dbname>)]
[-e | --echo]
[-f | --full]
[-F | --freeze]
[-t <tablename> [( column [,...] )] | --table <tablename> [( column [,...] )] ]
[(-v | --verbose) | (-q | --quiet)]
[-z | --analyze]
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
. There is no effective difference between vacuuming databases via this utility and via other methods for accessing the server.
Options
-d
option are not provided, the environment variable PGDATABASE
is used. If that is not set, the user name specified for the connection is used.<vacuum_options>
--all
is not used, the database name is read from the environment variable PGDATABASE
. If that is not set, the user name specified for the connection is used.Warning: A VACUUM FULL
is not recommended in HAWQ.
--analyze
option. If you specify columns, you probably have to escape the parentheses from the shell.<connection_options>
PGHOST
or defaults to localhost.PGPORT
or defaults to 5432.PGUSER
or defaults to the current system user name..pgpass
file, the connection attempt will fail. This option can be useful in batch jobs and scripts where no user is present to enter a password.Notes
vacuumdb
might need to connect several times to the master server, asking for a password each time. It is convenient to have a ~/.pgpass
file for such cases.
Examples
To clean the database test
:
$ vacuumdb testdb
To clean and analyze a database named bigdb
:
$ vacuumdb --analyze bigdb
To clean a single table foo
in a database named mydb
, and analyze a single column bar
of the table:
$ vacuumdb --analyze --verbose --table 'foo(bar)' mydb
Note the quotes around the table and column names to escape the parentheses from the shell.