Unsupported versions: 7.0 / 6.5 / 6.4
This documentation is for an unsupported version of PostgreSQL.
You may want to view the same page for the current version, or one of the other supported versions listed above instead.

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.