Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commite0a77f5

Browse files
committed
Cleanup of SGML
1 parentc0ad595 commite0a77f5

File tree

2 files changed

+76
-60
lines changed

2 files changed

+76
-60
lines changed

‎doc/src/sgml/ref/pg_dumpall.sgml

Lines changed: 67 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dumpall.sgml,v 1.30 2002/08/20 02:20:48 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/pg_dumpall.sgml,v 1.31 2002/08/27 03:55:17 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -67,89 +67,97 @@ PostgreSQL documentation
6767
operators should be used to redirect it into a file.
6868
</para>
6969

70-
<refsect2>
71-
<title>Options</title>
7270

73-
<para>
74-
<application>pg_dumpall</application> accepts the following
75-
command line arguments:
71+
<para>
72+
<application>pg_dumpall</application> will need to connect several times to the
73+
<productname>PostgreSQL</productname> server, asking for the password each
74+
time. It will probably be very convenient to have a PGPASSWORDFILE in that case.
75+
</para>
76+
77+
</refsect1>
78+
79+
<refsect1>
80+
<title>Options</title>
7681

77-
<variablelist>
78-
<varlistentry>
79-
<term>-c, --clean</term>
80-
<listitem>
81-
<para>
82+
<para>
83+
<application>pg_dumpall</application> accepts the following
84+
command line arguments:
85+
86+
<variablelist>
87+
<varlistentry>
88+
<term>-c, --clean</term>
89+
<listitem>
90+
<para>
8291
Include SQL commands to clean (drop) database objects before
8392
recreating them. (This option is fairly useless, since the
8493
output script expects to create the databases themselves;
8594
they would always be empty upon creation.)
86-
</para>
87-
</listitem>
88-
</varlistentry>
89-
90-
<varlistentry>
91-
<term>-g, --globals-only</term>
92-
<listitem>
93-
<para>
95+
</para>
96+
</listitem>
97+
</varlistentry>
98+
99+
<varlistentry>
100+
<term>-g, --globals-only</term>
101+
<listitem>
102+
<para>
94103
Only dump global objects (users and groups), no databases.
95-
</para>
96-
</listitem>
97-
</varlistentry>
98-
99-
<varlistentry>
100-
<term>-h <replaceable>host</replaceable></term>
101-
<listitem>
102-
<para>
104+
</para>
105+
</listitem>
106+
</varlistentry>
107+
108+
<varlistentry>
109+
<term>-h <replaceable>host</replaceable></term>
110+
<listitem>
111+
<para>
103112
Specifies the host name of the machine on which the database
104113
server is running. If host begins with a slash, it is used as
105114
the directory for the Unix domain socket. The default is
106115
taken from the <envar>PGHOST</envar> environment variable, if
107116
set, else a Unix domain socket connection is attempted.
108-
</para>
109-
</listitem>
110-
</varlistentry>
111-
112-
<varlistentry>
113-
<term>-p <replaceable>port</replaceable></term>
114-
<listitem>
115-
<para>
117+
</para>
118+
</listitem>
119+
</varlistentry>
120+
121+
<varlistentry>
122+
<term>-p <replaceable>port</replaceable></term>
123+
<listitem>
124+
<para>
116125
The port number on which the server is listening. Defaults to
117126
the <envar>PGPORT</envar> environment variable, if set, or a
118127
compiled-in default.
119-
</para>
120-
</listitem>
121-
</varlistentry>
122-
123-
<varlistentry>
124-
<term>-U <replaceable>username</replaceable></term>
125-
<listitem>
126-
<para>
128+
</para>
129+
</listitem>
130+
</varlistentry>
131+
132+
<varlistentry>
133+
<term>-U <replaceable>username</replaceable></term>
134+
<listitem>
135+
<para>
127136
Connect as the given user.
128-
</para>
129-
</listitem>
130-
</varlistentry>
131-
132-
<varlistentry>
133-
<term>-W</term>
134-
<listitem>
135-
<para>
137+
</para>
138+
</listitem>
139+
</varlistentry>
140+
141+
<varlistentry>
142+
<term>-W</term>
143+
<listitem>
144+
<para>
136145
Force a password prompt. This should happen automatically if
137146
the server requires password authentication.
138-
</para>
139-
</listitem>
140-
</varlistentry>
141-
</variablelist>
142-
</para>
147+
</para>
148+
</listitem>
149+
</varlistentry>
150+
</variablelist>
151+
</para>
143152

144-
<para>
153+
<para>
145154
Any other command line parameters are passed to the underlying
146155
<xref linkend="app-pgdump">
147156
calls. This is useful to control some aspects of the output
148157
format, but some options such as <option>-f</option>,
149158
<option>-F</option>, <option>-t</option>, and <replaceable
150159
class="parameter">dbname</replaceable> should be avoided.
151-
</para>
152-
</refsect2>
160+
</para>
153161
</refsect1>
154162

155163

‎doc/src/sgml/ref/vacuumdb.sgml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuumdb.sgml,v 1.23 2002/08/10 16:57:31 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/vacuumdb.sgml,v 1.24 2002/08/27 03:55:17 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -59,6 +59,14 @@ PostgreSQL documentation
5959
settings and environment variables available to <application>psql</application>
6060
and the <application>libpq</application> front-end library do apply.
6161
</para>
62+
63+
64+
<para>
65+
<application>vacuumdb</application> will need to connect several times to the
66+
<productname>PostgreSQL</productname> server, asking for the password each
67+
time. It will probably be very convenient to have a PGPASSWORDFILE in that case.
68+
</para>
69+
6270
</refsect1>
6371

6472

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp