~ubuntu-branches/debian/squeeze/pgadmin3/squeeze

« back to all changes in this revision

Viewing changes to docs/en_US/pg/runtime-config.html

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Enrici, src/frm/frmBackup.cpp, debian/control
  • Date: 2006-10-06 21:06:48 UTC
  • mfrom: (1.1.3 upstream) (3 etch)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20061006210648-8ebo8o2zu28ydg0d
Tags: 1.4.3-2
* Patched frmBackup.cpp to ensure the schema is specified when backing up
  individual tables. (Closes: #387256)
  [src/frm/frmBackup.cpp]
* Cleaned up and updated description of the package. (Closes: #379188)
  [debian/control]

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
<title>Chapter�17.�Server Configuration</title>
5
5
<link rel="stylesheet" href="stylesheet.css" type="text/css">
6
6
<link rev="made" href="pgsql-docs@postgresql.org">
7
 
<meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
8
 
<link rel="start" href="index.html" title="PostgreSQL 8.1.3 Documentation">
 
7
<meta name="generator" content="DocBook XSL Stylesheets V1.70.0">
 
8
<link rel="start" href="index.html" title="PostgreSQL 8.1.4 Documentation">
9
9
<link rel="up" href="admin.html" title="Part�III.�Server Administration">
10
10
<link rel="prev" href="ssh-tunnels.html" title="16.8.�Secure TCP/IP Connections with SSH Tunnels">
11
11
<link rel="next" href="runtime-config-file-locations.html" title="17.2.�File Locations">
 
12
<link rel="copyright" href="ln-legalnotice.html" title="Legal Notice">
12
13
</head>
13
14
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="chapter" lang="en" id="runtime-config">
14
15
<div class="titlepage"><div><div><h2 class="title">
76
77
<dt><span class="sect1"><a href="runtime-config-short.html">17.16. Short Options</a></span></dt>
77
78
</dl>
78
79
</div>
79
 
<a name="id592315"></a><p>   There are many configuration parameters that affect the behavior of
 
80
<a name="id644919"></a><p>   There are many configuration parameters that affect the behavior of
80
81
   the database system. In the first section of this chapter, we
81
82
   describe how to set configuration parameters. The subsequent sections
82
83
   discuss each parameter in detail.
93
94
    (all case-insensitive) or any unambiguous prefix of these.
94
95
   </p>
95
96
<p>    One way to set these parameters is to edit the file
96
 
    <code class="filename">postgresql.conf</code><a name="id592404"></a>,
 
97
    <code class="filename">postgresql.conf</code><a name="id645008"></a>,
97
98
    which is normally kept in the data directory. (<code class="command">initdb</code>
98
99
    installs a default copy there.) An example of what this file might look
99
100
    like is:
110
111
    numbers must be single-quoted.  To embed a single quote in a parameter
111
112
    value, write either two quotes (preferred) or backslash-quote.
112
113
  </p>
113
 
<p>    <a name="id592444"></a>
 
114
<p>    <a name="id645048"></a>
114
115
    The configuration file is reread whenever the
115
116
    <code class="command">postmaster</code> process receives a
116
117
    <span class="systemitem">SIGHUP</span> signal (which is most easily sent by means
156
157
    file, and in turn are overridden by per-user settings; both are
157
158
    overridden by per-session options.
158
159
   </p>
159
 
<p>    Some parameters can be changed in individual <span class="acronym">SQL</span>
 
160
<p>    Some parameters can be changed in individual <acronym class="acronym">SQL</acronym>
160
161
    sessions with the <a href="sql-set.html">SET</a>
161
162
    command, for example:
162
163
</p>