copy.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:14k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-COPY">
  2.  <refmeta>
  3.   <refentrytitle>
  4.    COPY
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    COPY
  11.   </refname>
  12.   <refpurpose>
  13.    Copies data between files and tables
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-09-08</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
  22.     FROM { '<replaceable class="parameter">filename</replaceable>' |
  23.    <filename>stdin</filename> }
  24.     [ USING DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
  25. COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
  26.     TO { '<replaceable class="parameter">filename</replaceable>' |
  27.    <filename>stdout</filename> }
  28.     [ USING DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
  29.   </synopsis>
  30.   
  31.   <refsect2 id="R2-SQL-COPY-1">
  32.    <refsect2info>
  33.     <date>1998-09-08</date>
  34.    </refsect2info>
  35.    <title>
  36.     Inputs
  37.    </title>
  38.    <para>
  39.     <variablelist>
  40.      <varlistentry>
  41.       <term>BINARY</term>
  42.       <listitem>
  43.        <para>
  44. Changes the behavior of field formatting, forcing all data to be
  45. stored or read as binary objects rather than as text.
  46.        </para>
  47.       </listitem>
  48.      </varlistentry>
  49.      <varlistentry>
  50.       <term><replaceable class="parameter">table</replaceable></term>
  51.       <listitem>
  52.        <para>
  53. The name of an existing table.
  54.        </para>
  55.       </listitem>
  56.      </varlistentry>
  57.      <varlistentry>
  58.       <term>WITH OIDS</term>
  59.       <listitem>
  60.        <para>
  61. Copies the internal unique object id (OID) for each row.
  62.        </para>
  63.       </listitem>
  64.      </varlistentry>
  65.      <varlistentry>
  66.       <term><replaceable class="parameter">filename</replaceable></term>
  67.       <listitem>
  68.        <para>
  69. The absolute Unix pathname of the input or output file.
  70.        </para>
  71.       </listitem>
  72.      </varlistentry>
  73.      <varlistentry>
  74.       <term><filename>stdin</filename></term>
  75.       <listitem>
  76.        <para>
  77. Specifies that input comes from a pipe or terminal.
  78.        </para>
  79.       </listitem>
  80.      </varlistentry>
  81.      <varlistentry>
  82.       <term><filename>stdout</filename></term>
  83.       <listitem>
  84.        <para>
  85. Specifies that output goes to a pipe or terminal.
  86.        </para>
  87.       </listitem>
  88.      </varlistentry>
  89.      <varlistentry>
  90.       <term><replaceable class="parameter">delimiter</replaceable></term>
  91.       <listitem>
  92.        <para>
  93. A character that delimits the input or output fields.
  94.        </para>
  95.       </listitem>
  96.      </varlistentry>
  97.     </variablelist>
  98.    </para>
  99.   </refsect2>
  100.   
  101.   <refsect2 id="R2-SQL-COPY-2">
  102.    <refsect2info>
  103.     <date>1998-09-08</date>
  104.    </refsect2info>
  105.    <title>
  106.     Outputs
  107.    </title>
  108.    <para>
  109.     <variablelist>
  110.      <varlistentry>
  111.       <term><computeroutput>
  112. COPY
  113.        </computeroutput></term>
  114.       <listitem>
  115.        <para>
  116. The copy completed successfully.
  117.        </para>
  118.       </listitem>
  119.      </varlistentry>
  120.      <varlistentry>
  121.       <term><computeroutput>
  122. ERROR: <replaceable>error message</replaceable>
  123.        </computeroutput></term>
  124.       <listitem>
  125.        <para>
  126. The copy failed for the reason stated in the error message.
  127.        </para>
  128.       </listitem>
  129.      </varlistentry>
  130.     </variablelist>
  131.    </para>
  132.   </refsect2>
  133.  </refsynopsisdiv>
  134.  
  135.  <refsect1 id="R1-SQL-COPY-1">
  136.   <refsect1info>
  137.    <date>1998-09-08</date>
  138.   </refsect1info>
  139.   <title>
  140.    Description
  141.   </title>
  142.   <para>
  143.    <command>COPY</command> moves data between
  144.    <productname>Postgres</productname> tables and
  145.    standard Unix files. 
  146.    <command>COPY</command> instructs
  147.    the <productname>Postgres</productname> backend
  148.    to directly read from or write to a file. The file must be directly visible to
  149.    the backend and the name must be specified from the viewpoint of the backend.
  150.    If <filename>stdin</filename> or <filename>stdout</filename> are
  151.    specified, data flows through the client frontend to  the backend.
  152.   </para>
  153.   <refsect2 id="R2-SQL-COPY-3">
  154.    <refsect2info>
  155.     <date>1998-09-08</date>
  156.    </refsect2info>
  157.    <title>
  158.     Notes
  159.    </title>
  160.    <para>
  161.     The BINARY keyword will force all data to be
  162.     stored/read as binary objects rather than as text.  It is
  163.     somewhat faster than the normal copy command, but is not
  164.     generally portable, and the files generated are somewhat larger,
  165.     although this factor is highly dependent on the data itself.  By
  166.     default, a text copy uses a tab ("t") character as a delimiter.
  167.     The delimiter may also be changed to any other single character
  168.     with the keyword phrase USING DELIMITERS.  Characters
  169.     in data fields which happen to match the delimiter character will
  170.     be quoted.
  171.    </para>
  172.    
  173.    <para>
  174.     You must have select access on any table whose values are read by
  175.     <command>COPY</command>, and either insert or update access to a
  176.     table into which values are being inserted by <command>COPY</command>.
  177.     The backend also needs appropriate Unix permissions for any file read
  178.     or written by <command>COPY</command>.
  179.    </para>
  180.    <para>
  181.     The keyword phrase USING DELIMITERS specifies a single character
  182.     to be used for all delimiters between columns. If multiple characters
  183.     are specified in the delimiter string,  only the first character is
  184.     used.
  185.     
  186.     <tip>
  187.      <para>
  188.       Do not confuse <command>COPY</command> with the
  189.       <application>psql</application> instruction <command>copy</command>.
  190.      </para>
  191.     </tip>
  192.    </para>
  193.   </refsect2>
  194.  </refsect1>
  195.  
  196.  <refsect1 id="R1-SQL-COPY-2">
  197.   <refsect1info>
  198.    <date>1998-05-04</date>
  199.   </refsect1info>
  200.   <title>File Formats</title>
  201.   <refsect2>
  202.    <refsect2info>
  203.     <date>1998-05-04</date>
  204.    </refsect2info>
  205.    <title>Text Format</title>
  206.    <para>
  207.     When <command>COPY TO</command> is used without the BINARY option,
  208.     the file generated will have each row (instance) on a single line, with each
  209.     column (attribute) separated by the delimiter character.  Embedded
  210.     delimiter characters will be preceded by a backslash character
  211.     ("").  The attribute values themselves are strings generated by the
  212.     output function associated with each attribute type.  The output
  213.     function for a type should not try to generate the backslash
  214.     character; this will be handled by <command>COPY</command> itself.
  215.    </para>
  216.    <para>
  217.     The actual format for each instance is
  218.     <programlisting>
  219. &lt;attr1&gt;&lt;<replaceable class=parameter>separator</replaceable>&gt;&lt;attr2&gt;&lt;<replaceable class=parameter>separator</replaceable>&gt;...&lt;<replaceable class=parameter>separator</replaceable>&gt;&lt;attr<replaceable class="parameter">n</replaceable>&gt;&lt;newline&gt;
  220.     </programlisting>
  221.     The oid is placed on the beginning of the line
  222.     if WITH OIDS is specified.
  223.    </para>
  224.    <para>
  225.     If <command>COPY</command> is sending its output to standard
  226.     output instead of a file, it will send a backslash("") and a period
  227.     (".")  followed immediately by a newline, on a separate line,
  228.     when it is done.  Similarly, if <command>COPY</command> is reading
  229.     from standard input, it will expect a backslash ("") and a period
  230.     (".") followed by a newline, as the first three characters on a
  231.     line to denote end-of-file.  However, <command>COPY</command>
  232.     will terminate (followed by the backend itself) if a true EOF is
  233.     encountered before this special end-of-file pattern is found.
  234.    </para>
  235.    <para>
  236.     The backslash character has other special meanings.  NULL attributes are
  237.     represented as "N".  A literal backslash character is represented as two
  238.     consecutive backslashes ("\").  A literal tab character is represented
  239.     as a backslash and a tab.  A literal newline character is
  240.     represented as a backslash and a newline.  When loading text data
  241.     not generated by <acronym>Postgres</acronym>,
  242.     you will need to convert backslash
  243.     characters ("") to double-backslashes ("\") to ensure that they are loaded
  244.     properly.
  245.    </para>
  246.   </refsect2>
  247.   <refsect2>
  248.    <refsect2info>
  249.     <date>1998-05-04</date>
  250.    </refsect2info>
  251.    <title>Binary Format</title>
  252.    <para>
  253.     In the case of <command>COPY BINARY</command>, the first four
  254.     bytes in the file will be the number of instances in the file.  If
  255.     this number is zero, the <command>COPY BINARY</command> command
  256.     will read until end of file is encountered.  Otherwise, it will
  257.     stop reading when this number of instances has been read.
  258.     Remaining data in the file will be ignored.
  259.    </para>
  260.    <para>
  261.     The format for each instance in the file is as follows.  Note that
  262.     this format must be followed <emphasis>exactly</emphasis>.
  263.     Unsigned four-byte integer quantities are called uint32 in the
  264.     table below.
  265.    </para>
  266.    <table frame="all">
  267.     <title>Contents of a binary copy file</title>
  268.     <tgroup cols="2" colsep="1" rowsep="1" align="center">
  269.      <colspec colname="col1">
  270.      <colspec colname="col2">
  271.      <spanspec namest="col1" nameend="col2" spanname="subhead">
  272.      <tbody>
  273.       <row>
  274.        <entry spanname="subhead" align="center">At the start of the file</entry>
  275.       </row>
  276.       <row>
  277.        <entry>uint32</entry>
  278.        <entry>number of tuples</entry>
  279.       </row>
  280.       <row>
  281.        <entry spanname="subhead" align="center">For each tuple</entry>
  282.       </row>
  283.       <row>
  284.        <entry>uint32</entry>
  285.        <entry>total length of tuple data</entry>
  286.       </row>
  287.       <row>
  288.        <entry>uint32</entry>
  289.        <entry>oid (if specified)</entry>
  290.       </row>
  291.       <row>
  292.        <entry>uint32</entry>
  293.        <entry>number of null attributes</entry>
  294.       </row>
  295.       <row>
  296.        <entry>[uint32,...,uint32]</entry>
  297.        <entry>attribute numbers of attributes, counting from 0</entry>
  298.       </row>
  299.       <row>
  300.        <entry>-</entry>
  301.        <entry>&lt;tuple data&gt;</entry>
  302.       </row>
  303.      </tbody>
  304.     </tgroup>
  305.    </table>
  306.    
  307.   </refsect2>
  308.   <refsect2>
  309.    <refsect2info>
  310.     <date>1998-05-04</date>
  311.    </refsect2info>
  312.    <title>Alignment of Binary Data</title>
  313.    <para>
  314.     On Sun-3s, 2-byte attributes are aligned on two-byte boundaries,
  315.     and all larger attributes are aligned on four-byte boundaries.
  316.     Character attributes are aligned on single-byte boundaries.  On
  317.     most other machines, all attributes larger than 1 byte are aligned on
  318.     four-byte boundaries.  Note that variable length attributes are
  319.     preceded by the attribute's length; arrays are simply contiguous
  320.     streams of the array element type.
  321.    </para>
  322.   </refsect2>
  323.  </refsect1>
  324.  
  325.  <refsect1 id="R1-SQL-COPY-3">
  326.   <title>
  327.    Usage
  328.   </title>
  329.   <para>
  330. The following example copies a table to standard output,
  331.  using a vertical bar ("|") as the field
  332.  delimiter:
  333.   </para>
  334.   <programlisting>
  335. COPY country TO <filename>stdout</filename> USING DELIMITERS '|';
  336.   </programlisting>
  337.   <para>
  338.    To copy data from a Unix file into a table "country":
  339.   </para>
  340.   <programlisting>
  341. COPY country FROM '/usr1/proj/bray/sql/country_data';
  342.   </programlisting>
  343.   <para>
  344.    Here is a sample of data suitable for copying into a table
  345.  from <filename>stdin</filename> (so it
  346. has the termination sequence on the last line):
  347.   </para>
  348.   <programlisting>
  349.    AF      AFGHANISTAN
  350.    AL      ALBANIA
  351.    DZ      ALGERIA
  352.    ...
  353.    ZM      ZAMBIA
  354.    ZW      ZIMBABWE
  355.    .
  356.   </programlisting>
  357.   <para>
  358.    The same data, output in binary format on a Linux/i586 machine.
  359.    The data is shown after filtering through
  360.  the Unix utility <command>od -c</command>. The table has
  361.    three fields; the first is <classname>char(2)</classname>
  362.  and the second is <classname>text</classname>. All the
  363.    rows have a null value in the third field.
  364.   Notice how the <classname>char(2)</classname>
  365.    field is padded with nulls to four bytes and the text field is
  366.    preceded by its length:
  367.   </para>
  368.   <programlisting>
  369.    355       027       001       002      
  370.    006         A   F     017         A   F   G   H
  371.      A   N   I   S   T   A   N 023       001       002
  372.          006         A   L      v         A
  373.      L   B   A   N   I   A 023       001       002  
  374.        006         D   Z      v         A   L
  375.      G   E   R   I   A
  376.    ...              n         Z   A   M   B   I   A 024  
  377.        001       002       006         Z   W
  378.         f         Z   I   M   B   A   B   W   E
  379.   </programlisting>
  380.  </refsect1>
  381.  
  382.  <refsect1 id="R1-SQL-COPY-5">
  383.   <title>Bugs and features</title>
  384.   <para>
  385.    <command>COPY</command> neither invokes rules nor acts on column defaults.
  386.    It does invoke triggers, however.
  387.   </para>
  388.   <para>
  389.    <command>COPY</command> stops operation at the first error.  This
  390.    should not lead to problems in the event of
  391.  a <command>COPY FROM</command>, but the
  392.    target relation will, of course, be partially modified in a
  393. <command>COPY TO</command>.
  394.   The <command>VACUUM</command> query should be used to clean up
  395.    after a failed copy.
  396.   </para>
  397.   <para>
  398.    Because the Postgres backend's current working directory
  399.  is not usually the same as the user's
  400.    working directory, the result of copying to a file
  401.  "<filename>foo</filename>" (without
  402.    additional path information) may yield unexpected results for the
  403.    naive user.  In this case, <filename>foo</filename>
  404.  will wind up in <filename>$PGDATA/foo</filename>.  In
  405.    general, the full pathname as it would appear to the backend server machine
  406. should be used when specifying files to
  407.    be copied.
  408.   </para>
  409.   <para>
  410.    Files used as arguments to <command>COPY</command>
  411. must reside on or be
  412.    accessible to the database server machine by being either on
  413.    local disks or on a networked file system.
  414.   </para>
  415.   <para>
  416.    When a TCP/IP connection from one machine to another is used, and a
  417.    target file is specified, the target file will be written on the
  418.    machine where the backend is running rather than the user's
  419.    machine. 
  420.   </para>
  421.  </refsect1>
  422.  
  423.  <refsect1 id="R1-SQL-COPY-6">
  424.   <title>
  425.    Compatibility
  426.   </title>
  427.   <para>
  428.   </para>
  429.   
  430.   <refsect2 id="R2-SQL-COPY-4">
  431.    <refsect2info>
  432.     <date>1998-09-08</date>
  433.    </refsect2info>
  434.    <title>
  435.     SQL92
  436.    </title>
  437.    <para>
  438.     There is no <command>COPY</command> statement in SQL92.
  439.    </para>
  440.   </refsect2>
  441.  </refsect1>
  442. </refentry>
  443. <!-- Keep this comment at the end of the file
  444. Local variables:
  445. mode: sgml
  446. sgml-omittag:nil
  447. sgml-shorttag:t
  448. sgml-minimize-attributes:nil
  449. sgml-always-quote-attributes:t
  450. sgml-indent-step:1
  451. sgml-indent-data:t
  452. sgml-parent-document:nil
  453. sgml-default-dtd-file:"../reference.ced"
  454. sgml-exposed-tags:nil
  455. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  456. sgml-local-ecat-files:nil
  457. End:
  458. -->