Index: doc/src/sgml/ref/pg_dump.sgml
===================================================================
RCS file: /cvsroot/pgsql/doc/src/sgml/ref/pg_dump.sgml,v
retrieving revision 1.83
diff -c -c -r1.83 pg_dump.sgml
*** doc/src/sgml/ref/pg_dump.sgml	15 Apr 2006 18:11:16 -0000	1.83
--- doc/src/sgml/ref/pg_dump.sgml	6 May 2006 23:23:23 -0000
***************
*** 244,271 ****
          </varlistentry>
  
          <varlistentry>
!          <term><literal>t</></term>
!          <term><literal>tar</></term>
           <listitem>
            <para>
!          Output a <command>tar</command> archive suitable for input into 
!          <application>pg_restore</application>. Using this archive format 
!          allows reordering and/or exclusion of database objects
!          at the time the database is restored. It is also possible to limit 
!          which data is reloaded at restore time.
            </para>
           </listitem>
          </varlistentry>
  
          <varlistentry>
!          <term><literal>c</></term>
!          <term><literal>custom</></term>
           <listitem>
            <para>
!          Output a custom archive suitable for input into 
!          <application>pg_restore</application>. This is the most flexible 
!          format in that it allows reordering of loading data as well 
!          as object definitions. This format is also compressed by default.
            </para>
           </listitem>
          </varlistentry>
--- 244,271 ----
          </varlistentry>
  
          <varlistentry>
!          <term><literal>c</></term>
!          <term><literal>custom</></term>
           <listitem>
            <para>
!          Output a custom archive suitable for input into 
!          <application>pg_restore</application>. This is the most flexible 
!          format in that it allows reordering of loading data as well 
!          as object definitions. This format is also compressed by default.
            </para>
           </listitem>
          </varlistentry>
  
          <varlistentry>
!          <term><literal>t</></term>
!          <term><literal>tar</></term>
           <listitem>
            <para>
!          Output a <command>tar</command> archive suitable for input into 
!          <application>pg_restore</application>. Using this archive format 
!          allows reordering and/or exclusion of database objects
!          at the time the database is restored. It is also possible to limit 
!          which data is reloaded at restore time.
            </para>
           </listitem>
          </varlistentry>
***************
*** 665,675 ****
    </para>
  
    <para>
!    To dump a database called <literal>mydb</> to a <filename>tar</filename>
     file:
  
  <screen>
! <prompt>$</prompt> <userinput>pg_dump -Ft mydb &gt; db.tar</userinput>
  </screen>
    </para>
  
--- 665,675 ----
    </para>
  
    <para>
!    To dump a database called <literal>mydb</> to a file in custom format:
     file:
  
  <screen>
! <prompt>$</prompt> <userinput>pg_dump -Fc mydb &gt; db.out</userinput>
  </screen>
    </para>
  
***************
*** 677,683 ****
     To reload this dump into an existing database called <literal>newdb</>:
  
  <screen>
! <prompt>$</prompt> <userinput>pg_restore -d newdb db.tar</userinput>
  </screen>
    </para>
  
--- 677,683 ----
     To reload this dump into an existing database called <literal>newdb</>:
  
  <screen>
! <prompt>$</prompt> <userinput>pg_restore -d newdb db.out</userinput>
  </screen>
    </para>
  
