...try in ~/.postgresqlrc (see postgresqlrc (5)), if that file exists matching entry in /etc/postgresql-common/user_clusters (see user_clusters (5)), if that file exists If only on…...try in ~/.postgresqlrc (see postgresqlrc (5)), if that file exists matching entry in /etc/postgresql-common/user_clusters (see user_clusters (5)), if that file exists If only on…...ter and the default database for an user. If it is not present, the system-wide file /etc/postgresql-common/user_clusters is used instead. FORMAT Comments are introduced by the …...NAME user_clusters - File linking users to PostgreSQL clusters DESCRIPTION The file /etc/postgresql-common/user_clusters maps users against the database clusters to which they w…compute a set of rows NAME VALUES - compute a set of rows SYNOPSIS VALUES ( expression [, ...] ) [, ...] [ ORDER BY sort_expression [ ASC | DESC | USING operator ] [, ...] ] [ LIMI…define a new domain NAME CREATE_DOMAIN - define a new domain SYNOPSIS CREATE DOMAIN name [ AS ] data_type [ COLLATE collation ] [ DEFAULT expression ] [ domain_constraint [ ... ] ]…Git Repository Layout NAME gitrepository-layout - Git Repository Layout SYNOPSIS $GIT_DIR/* DESCRIPTION A Git repository comes in two different flavours: •a .git directory at the r…define extended statistics NAME CREATE_STATISTICS - define extended statistics SYNOPSIS CREATE STATISTICS [ [ IF NOT EXISTS ] statistics_name ] ON ( expression ) FROM table_name CR…collect statistics about a database NAME ANALYZE - collect statistics about a database SYNOPSIS ANALYZE [ ( option [, ...] ) ] [ table_and_columns [, ...] ] where option can be one…generate a notification NAME NOTIFY - generate a notification SYNOPSIS NOTIFY channel [ , payload ] DESCRIPTION The NOTIFY command sends a notification event together with an optio…extract a PostgreSQL database cluster into a script file NAME pg_dumpall - extract a PostgreSQL database cluster into a script file SYNOPSIS pg_dumpall [ connection-option ...] [ o…verify the integrity of a base backup of a PostgreSQL cluster NAME pg_verifybackup - verify the integrity of a base backup of a PostgreSQL cluster SYNOPSIS pg_verifybackup [ option…copy data between a file and a table NAME COPY - copy data between a file and a table SYNOPSIS COPY table_name [ ( column_name [, ...] ) ] FROM { ' filename ' | PROGRAM ' command '…change a server configuration parameter NAME ALTER_SYSTEM - change a server configuration parameter SYNOPSIS ALTER SYSTEM SET configuration_parameter { TO | = } { value [, ...] | D…define a new trigger NAME CREATE_TRIGGER - define a new trigger SYNOPSIS CREATE [ OR REPLACE ] [ CONSTRAINT ] TRIGGER name { BEFORE | AFTER | INSTEAD OF } { event [ OR ... ] } ON t…check the connection status of a PostgreSQL server NAME pg_isready - check the connection status of a PostgreSQL server SYNOPSIS pg_isready [ connection-option ...] [ option ...] D…define a new cast NAME CREATE_CAST - define a new cast SYNOPSIS CREATE CAST ( source_type AS target_type ) WITH FUNCTION function_name [ ( argument_type [, ...]) ] [ AS ASSIGNMENT …retrieve rows from a table or view NAME SELECT, TABLE, WITH - retrieve rows from a table or view SYNOPSIS [ WITH [ RECURSIVE ] with_query [, ...] ] SELECT [ ALL | DISTINCT [ ON ( e…update rows of a table NAME UPDATE - update rows of a table SYNOPSIS [ WITH [ RECURSIVE ] with_query [, ...] ] UPDATE [ ONLY ] table_name [ * ] [ [ AS ] alias ] SET { column_name =…remove a PostgreSQL user account NAME dropuser - remove a PostgreSQL user account SYNOPSIS dropuser [ connection-option ...] [ option ...] [ username ] DESCRIPTION dropuser removes…