|
1 | 1 | <!--
|
2 |
| -$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.37 2002/08/04 05:22:02 tgl Exp $ |
| 2 | +$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.38 2002/08/30 03:18:23 momjian Exp $ |
3 | 3 | PostgreSQL documentation
|
4 | 4 | -->
|
5 | 5 |
|
@@ -56,7 +56,7 @@ COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="
|
56 | 56 | </listitem>
|
57 | 57 | </varlistentry>
|
58 | 58 |
|
59 |
| - <varlistentry> |
| 59 | + <varlistentry> |
60 | 60 | <term><replaceable class="parameter">column</replaceable></term>
|
61 | 61 | <listitem>
|
62 | 62 | <para>
|
@@ -699,6 +699,19 @@ ZW ZIMBABWE
|
699 | 699 | <para>
|
700 | 700 | There is no <command>COPY</command> statement in SQL92.
|
701 | 701 | </para>
|
| 702 | + <para> |
| 703 | + The following syntax was used by pre-7.3 servers and is still supported: |
| 704 | + <synopsis> |
| 705 | + COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ] |
| 706 | + FROM { '<replaceable class="parameter">filename</replaceable>' | <filename>stdin</filename> } |
| 707 | + [ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ] |
| 708 | + [ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ] |
| 709 | + COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ] |
| 710 | + TO { '<replaceable class="parameter">filename</replaceable>' | <filename>stdout</filename> } |
| 711 | + [ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ] |
| 712 | + [ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ] |
| 713 | + </synopsis> |
| 714 | + </para> |
702 | 715 | </refsect2>
|
703 | 716 | </refsect1>
|
704 | 717 | </refentry>
|
|