1RESET() SQL Commands RESET()
2
3
4
6 RESET - restore the value of a run-time parameter to the default value
7
8
10 RESET configuration_parameter
11 RESET ALL
12
13
15 RESET restores run-time parameters to their default values. RESET is an
16 alternative spelling for
17
18 SET configuration_parameter TO DEFAULT
19
20 Refer to SET [set(7)] for details.
21
22 The default value is defined as the value that the parameter would have
23 had, had no SET ever been issued for it in the current session. The
24 actual source of this value might be a compiled-in default, the configā
25 uration file, command-line options, or per-database or per-user default
26 settings. See in the documentation for details.
27
28 See the SET reference page for details on the transaction behavior of
29 RESET.
30
32 configuration_parameter
33 The name of a run-time parameter. See SET [set(7)] for a list.
34
35 ALL Resets all settable run-time parameters to default values.
36
38 Set the geqo configuration variable to its default value:
39
40 RESET geqo;
41
42
44 RESET is a PostgreSQL extension.
45
46
47
48SQL - Language Statements 2008-06-08 RESET()