table of contents
DROPDB(1) | PostgreSQL 9.2.24 Documentation | DROPDB(1) |
NAME¶
dropdb - remove a PostgreSQL database
SYNOPSIS¶
dropdb [connection-option...] [option...] dbname
DESCRIPTION¶
dropdb destroys an existing PostgreSQL database. The user who executes this command must be a database superuser or the owner of the database.
dropdb is a wrapper around the SQL command DROP DATABASE (DROP_DATABASE(7)). There is no effective difference between dropping databases via this utility and via other methods for accessing the server.
OPTIONS¶
dropdb accepts the following command-line arguments:
dbname
-e, --echo
-i, --interactive
-V, --version
--if-exists
-?, --help
dropdb 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 dropdb will automatically prompt for a password if the server demands password authentication. However, dropdb 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¶
PGHOST, PGPORT, PGUSER
This utility, like most other PostgreSQL utilities, also uses the environment variables supported by libpq (see Section 31.14, “Environment Variables”, in the documentation).
DIAGNOSTICS¶
In case of difficulty, see DROP DATABASE (DROP_DATABASE(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.
EXAMPLES¶
To destroy the database demo on the default database server:
$ dropdb demo
To destroy the database demo using the server on host eden, port 5000, with verification and a peek at the underlying command:
$ dropdb -p 5000 -h eden -i -e demo Database "demo" will be permanently deleted. Are you sure? (y/n) y DROP DATABASE demo;
SEE ALSO¶
createdb(1), DROP DATABASE (DROP_DATABASE(7))
2017-11-06 | PostgreSQL 9.2.24 |