Alternative Method for Log Shipping
  • References/Database/PostgreSQL/High Availability

An alternative to the built-in standby mode described in the previous sections is to use a restore_command that polls the archive location. This

2025-01-10 15:47:30
Server Configuration: Automatic Vacuuming
  • References/Database/PostgreSQL/Server Configuration

These settings control the behavior of the autovacuum feature. Refer to Section 24.1.6 for more information. Note that many of these settings can be

2025-01-10 15:47:30
Mathematical Functions and Operators
  • References/Database/PostgreSQL/Functions/Mathematical

Mathematical operators are provided for many PostgreSQL types. For types without standard mathematical conventions (e.g., date/time types)

2025-01-10 15:47:30
Catalogs: pg_index
  • References/Database/PostgreSQL/Internals: Catalogs

The catalog pg_index contains part of the information about indexes. The rest is mostly in pg_class.

2025-01-10 15:47:30
Table Basics
  • References/Database/PostgreSQL/Data Definition

A table in a relational database is much like a table on paper: It consists of rows and columns. The number and order of the columns is fixed, and each column has a name. The

2025-01-10 15:47:30
CREATE EXTENSION
  • References/Database/PostgreSQL/Commands

NameCREATE EXTENSION -- install an extension Synopsis

2025-01-10 15:47:30
Constraints
  • References/Database/PostgreSQL/Data Definition

Data types are a way to limit the kind of data that can be stored in a table. For many applications, however, the constraint they provide is too coarse. For example, a column

2025-01-10 15:47:30
TRUNCATE
  • References/Database/PostgreSQL/Commands

NameTRUNCATE -- empty a table or set of tables Synopsis

2025-01-10 15:47:30
DROP TEXT SEARCH TEMPLATE
  • References/Database/PostgreSQL/Commands

NameDROP TEXT SEARCH TEMPLATE -- remove a text search template Synopsis

2025-01-10 15:47:30
ALTER TYPE
  • References/Database/PostgreSQL/Commands

NameALTER TYPE -- change the definition of a type Synopsis

2025-01-10 15:47:30