1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>RESET</title>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rev="made" href="pgsql-docs@postgresql.org">
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
<link rel="up" href="sql-commands.html" title="SQL Commands">
<link rel="prev" href="sql-release-savepoint.html" title="RELEASE SAVEPOINT">
<link rel="next" href="sql-revoke.html" title="REVOKE">
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry" lang="en">
<a name="sql-reset"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2>Name</h2>
<p>RESET — restore the value of a run-time parameter to the default value</p>
</div>
<a name="id780876"></a><div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">RESET <em class="replaceable"><code>name</code></em>
RESET ALL</pre>
</div>
<div class="refsect1" lang="en">
<a name="id780901"></a><h2>Description</h2>
<p> <code class="command">RESET</code> restores run-time parameters to their
default values. <code class="command">RESET</code> is an alternative
spelling for
</p>
<pre class="synopsis">SET <em class="replaceable"><code>parameter</code></em> TO DEFAULT</pre>
<p>
Refer to <a href="sql-set.html">SET</a> for
details.
</p>
<p> The default value is defined as the value that the parameter would
have had, had no <code class="command">SET</code> ever been issued for it in the
current session. The actual source of this value might be a
compiled-in default, the configuration file, command-line options,
or per-database or per-user default settings. See <a href="runtime-config.html" title="Chapter17.Server Configuration">Chapter17, <i>Server Configuration</i></a> for details.
</p>
<p> See the <code class="command">SET</code> reference page for details on the
transaction behavior of <code class="command">RESET</code>.
</p>
</div>
<div class="refsect1" lang="en">
<a name="id780983"></a><h2>Parameters</h2>
<div class="variablelist"><dl>
<dt><span class="term"><em class="replaceable"><code>name</code></em></span></dt>
<dd><p> The name of a run-time parameter. See <a href="sql-set.html">SET</a> for a list.
</p></dd>
<dt><span class="term"><code class="literal">ALL</code></span></dt>
<dd><p> Resets all settable run-time parameters to default values.
</p></dd>
</dl></div>
</div>
<div class="refsect1" lang="en">
<a name="id781023"></a><h2>Examples</h2>
<p> Set the <code class="varname">geqo</code> configuration variable to its default value:
</p>
<pre class="screen">RESET geqo;</pre>
<p>
</p>
</div>
<div class="refsect1" lang="en">
<a name="id781041"></a><h2>Compatibility</h2>
<p> <code class="command">RESET</code> is a <span class="productname">PostgreSQL</span> extension.
</p>
</div>
</div></body>
</html>
|