1RESET(7) PostgreSQL 9.2.24 Documentation RESET(7)
2
3
4
6 RESET - restore the value of a run-time parameter to the default value
7
9 RESET configuration_parameter
10 RESET ALL
11
13 RESET restores run-time parameters to their default values. RESET is
14 an alternative spelling for
15
16 SET configuration_parameter TO DEFAULT
17
18 Refer to SET(7) for details.
19
20 The default value is defined as the value that the parameter would have
21 had, if no SET had ever been issued for it in the current session. The
22 actual source of this value might be a compiled-in default, the
23 configuration file, command-line options, or per-database or per-user
24 default settings. This is subtly different from defining it as “the
25 value that the parameter had at session start”, because if the value
26 came from the configuration file, it will be reset to whatever is
27 specified by the configuration file now. See Chapter 18, Server
28 Configuration, in the documentation for details.
29
30 The transactional behavior of RESET is the same as SET: its effects
31 will be undone by transaction rollback.
32
34 configuration_parameter
35 Name of a settable run-time parameter. Available parameters are
36 documented in Chapter 18, Server Configuration, in the
37 documentation and on the SET(7) reference page.
38
39 ALL
40 Resets all settable run-time parameters to default values.
41
43 Set the timezone configuration variable to its default value:
44
45 RESET timezone;
46
48 RESET is a PostgreSQL extension.
49
51 SET(7), SHOW(7)
52
53
54
55PostgreSQL 9.2.24 2017-11-06 RESET(7)