mirror of
https://github.com/postgres/postgres.git
synced 2025-07-24 14:22:24 +03:00
Please find enclosed a patch, per Dennis Bj<C3><B6>rklund, that uses -f
for input files rather than <. This makes error messages, &c. more expressive. David Fetter
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.55 2005/01/22 22:56:35 momjian Exp $
|
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.56 2005/02/25 04:56:01 momjian Exp $
|
||||||
-->
|
-->
|
||||||
<chapter id="backup">
|
<chapter id="backup">
|
||||||
<title>Backup and Restore</title>
|
<title>Backup and Restore</title>
|
||||||
@ -177,7 +177,7 @@ pg_dumpall > <replaceable>outfile</>
|
|||||||
</synopsis>
|
</synopsis>
|
||||||
The resulting dump can be restored with <application>psql</>:
|
The resulting dump can be restored with <application>psql</>:
|
||||||
<synopsis>
|
<synopsis>
|
||||||
psql template1 < <replaceable class="parameter">infile</replaceable>
|
psql -f <replaceable class="parameter">infile</replaceable> template1
|
||||||
</synopsis>
|
</synopsis>
|
||||||
(Actually, you can specify any existing database name to start from,
|
(Actually, you can specify any existing database name to start from,
|
||||||
but if you are reloading in an empty cluster then <literal>template1</>
|
but if you are reloading in an empty cluster then <literal>template1</>
|
||||||
@ -1210,7 +1210,7 @@ cd ~/postgresql-&version;
|
|||||||
gmake install
|
gmake install
|
||||||
initdb -D /usr/local/pgsql/data
|
initdb -D /usr/local/pgsql/data
|
||||||
postmaster -D /usr/local/pgsql/data
|
postmaster -D /usr/local/pgsql/data
|
||||||
psql template1 < backup
|
psql -f backup template1
|
||||||
</programlisting>
|
</programlisting>
|
||||||
|
|
||||||
See <xref linkend="runtime"> about ways to start and stop the
|
See <xref linkend="runtime"> about ways to start and stop the
|
||||||
|
Reference in New Issue
Block a user