select open change scope Open full search

PG.CENTER connects PostgreSQL documentation, reference, and ecosystem knowledge. Maintained by Pigsty.

Unsupported versions: 7.0 / 6.5 / 6.4
Historical version. PostgreSQL 7.0 reached end of support in May 2005. See the current manual for supported releases.

RESET

Name

RESET — Restores run-time parameters for session to default values
RESET variable
  

Inputs

variable

Refer to SET for more information on available variables.

Outputs

RESET VARIABLE

Message returned if variable is successfully reset to its default value.

Description

RESET restores variables to their default values. Refer to SET for details on allowed values and defaults. RESET is an alternate form for

SET variable = DEFAULT
   

Notes

See also SET and SHOW to manipulate variable values.

Usage

Set DateStyle to its default value:

RESET DateStyle;
   

Set Geqo to its default value:

   
RESET GEQO;
   

Compatibility

SQL92

There is no RESET in SQL92.

Report a documentation issue

Read the upstream documentation. For corrections, first check the current manual.