提交 d9d2d915 编写于 作者: B Bruce Momjian

Recommend more clearly custom pg_dump format over tar, buy showing

custom format examples first.
上级 bcf860b7
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/pg_dump.sgml,v 1.83 2006/04/15 18:11:16 momjian Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/pg_dump.sgml,v 1.84 2006/05/06 23:25:37 momjian Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -244,28 +244,28 @@ PostgreSQL documentation ...@@ -244,28 +244,28 @@ PostgreSQL documentation
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term><literal>t</></term> <term><literal>c</></term>
<term><literal>tar</></term> <term><literal>custom</></term>
<listitem> <listitem>
<para> <para>
Output a <command>tar</command> archive suitable for input into Output a custom archive suitable for input into
<application>pg_restore</application>. Using this archive format <application>pg_restore</application>. This is the most flexible
allows reordering and/or exclusion of database objects format in that it allows reordering of loading data as well
at the time the database is restored. It is also possible to limit as object definitions. This format is also compressed by default.
which data is reloaded at restore time.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry> <varlistentry>
<term><literal>c</></term> <term><literal>t</></term>
<term><literal>custom</></term> <term><literal>tar</></term>
<listitem> <listitem>
<para> <para>
Output a custom archive suitable for input into Output a <command>tar</command> archive suitable for input into
<application>pg_restore</application>. This is the most flexible <application>pg_restore</application>. Using this archive format
format in that it allows reordering of loading data as well allows reordering and/or exclusion of database objects
as object definitions. This format is also compressed by default. at the time the database is restored. It is also possible to limit
which data is reloaded at restore time.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
...@@ -665,11 +665,11 @@ CREATE DATABASE foo WITH TEMPLATE template0; ...@@ -665,11 +665,11 @@ CREATE DATABASE foo WITH TEMPLATE template0;
</para> </para>
<para> <para>
To dump a database called <literal>mydb</> to a <filename>tar</filename> To dump a database called <literal>mydb</> to a file in custom format:
file: file:
<screen> <screen>
<prompt>$</prompt> <userinput>pg_dump -Ft mydb &gt; db.tar</userinput> <prompt>$</prompt> <userinput>pg_dump -Fc mydb &gt; db.out</userinput>
</screen> </screen>
</para> </para>
...@@ -677,7 +677,7 @@ CREATE DATABASE foo WITH TEMPLATE template0; ...@@ -677,7 +677,7 @@ CREATE DATABASE foo WITH TEMPLATE template0;
To reload this dump into an existing database called <literal>newdb</>: To reload this dump into an existing database called <literal>newdb</>:
<screen> <screen>
<prompt>$</prompt> <userinput>pg_restore -d newdb db.tar</userinput> <prompt>$</prompt> <userinput>pg_restore -d newdb db.out</userinput>
</screen> </screen>
</para> </para>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册