Skip to content

Commit 8cf87ac

Browse files
committed
Fix some typos.
1 parent 0ad017f commit 8cf87ac

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

doc/src/sgml/backup.sgml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.19 2001/11/18 22:17:30 tgl Exp $ -->
1+
<!--
2+
$Header: /cvsroot/pgsql/doc/src/sgml/backup.sgml,v 2.20 2001/11/18 22:27:00 tgl Exp $
3+
-->
24
<chapter id="backup">
35
<title>Backup and Restore</title>
46

@@ -81,10 +83,12 @@ pg_dump <replaceable class="parameter">dbname</replaceable> &gt; <replaceable cl
8183

8284
<important>
8385
<para>
84-
When your database schema relies on OIDs (for instances as foreign
86+
When your database schema relies on OIDs (for instance as foreign
8587
keys) you must instruct <application>pg_dump</> to dump the OIDs
8688
as well. To do this, use the <option>-o</option> command line
87-
option.
89+
option. <quote>Large objects</> are not dumped by default, either.
90+
See <application>pg_dump</>'s command reference page if you use
91+
large objects.
8892
</para>
8993
</important>
9094

@@ -115,16 +119,16 @@ psql <replaceable class="parameter">dbname</replaceable> &lt; <replaceable class
115119
users, then the dump will instruct <application>psql</> to connect
116120
as each affected user in turn and then create the relevant
117121
objects. This way the original ownership is preserved. This also
118-
means, however, that all these user must already exist, and
122+
means, however, that all these users must already exist, and
119123
furthermore that you must be allowed to connect as each of them.
120124
It might therefore be necessary to temporarily relax the client
121125
authentication settings.
122126
</para>
123127

124128
<para>
125129
The ability of <application>pg_dump</> and <application>psql</> to
126-
write or read from pipes also make it possible to dump a database
127-
directory from one server to another, for example
130+
write to or read from pipes makes it possible to dump a database
131+
directly from one server to another, for example
128132
<informalexample>
129133
<programlisting>
130134
pg_dump -h <replaceable>host1</> <replaceable>dbname</> | psql -h <replaceable>host2</> <replaceable>dbname</>

0 commit comments

Comments
 (0)