RESET

Name

RESET  --  Restores run-time variables to their default settings.

Synopsis

RESET variable
  

Parameters

variable

Use this parameter to specify a psql run-time variable that you wish to reset to its default value. See SET for more information on available variables to reset.

Results

RESET VARIABLE

This message is displayed if the specified variable is reset to its default value.

Description

Use the RESET command to return run-time variables to their original values. For more information on what values are allowed for these variables, and to find out what their original values were, refer to SET. You can also issue the command: SET variable TO DEFAULT to accomplish the same thing.

Examples

The following example resets SEED to its default value.

RESET SEED;