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

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-SET">
  2.  <refmeta>
  3.   <refentrytitle>
  4.    SET
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname id="SQL-SET-TITLE">
  10.    SET
  11.   </refname>
  12.   <refpurpose>
  13.    Set run-time parameters for session
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-09-24</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. SET <replaceable class="PARAMETER">variable</replaceable> { TO | = } { '<replaceable class="PARAMETER">value</replaceable>' | DEFAULT }
  22. SET TIME ZONE { '<replaceable class="PARAMETER">timezone</replaceable>' | LOCAL | DEFAULT }
  23. SET TRANSACTION ISOLATION LEVEL { READ COMMITTED | SERIALIZED }
  24.   </synopsis>
  25.   <refsect2 id="R2-SQL-SET-1">
  26.    <refsect2info>
  27.     <date>1998-09-24</date>
  28.    </refsect2info>
  29.    <title>
  30.     Inputs
  31.    </title>
  32.    <para>
  33.     <variablelist>
  34.      <varlistentry>
  35.       <term>
  36. <replaceable class="PARAMETER">variable</replaceable>
  37.       </term>
  38.       <listitem>
  39.        <para>
  40. Settable global parameter.
  41.        </para>
  42.       </listitem>
  43.      </varlistentry>
  44.      <varlistentry>
  45.       <term>
  46. <replaceable class="PARAMETER">value</replaceable>
  47.       </term>
  48.       <listitem>
  49.        <para>
  50. New value of parameter.
  51.        </para>
  52.       </listitem>
  53.      </varlistentry>
  54.     </variablelist>
  55.    </para>
  56.    <para>
  57.     The possible variables and allowed values are:
  58.     <variablelist>
  59.      <varlistentry>
  60.       <term>
  61. CLIENT_ENCODING | NAMES
  62.       </term>
  63.       <listitem>
  64.        <para>
  65. Sets the multi-byte client encoding. Parameters are:
  66. <variablelist>
  67.  <varlistentry>
  68.   <term>
  69. <replaceable class="parameter">value</replaceable>
  70.   </term>
  71.   <listitem>
  72.    <para>
  73.     Sets the multi-byte client encoding to
  74.     <replaceable class="parameter">value</replaceable>.
  75.     The specified encoding must be supported by the backend.
  76.    </para>
  77.   </listitem>
  78.  </varlistentry>
  79.  
  80.  <varlistentry>
  81.   <term>
  82. DEFAULT
  83.   </term>
  84.   <listitem>
  85.    <para>
  86.     Sets the multi-byte client encoding to the default value.
  87.    </para>
  88.   </listitem>
  89.  </varlistentry>
  90. </variablelist>
  91.        </para>
  92.        <para>
  93. This is only enabled if multi-byte was specified to configure.
  94.        </para>
  95.       </listitem>
  96.      </varlistentry>
  97.      <varlistentry>
  98.       <term>
  99. DateStyle
  100.       </term>
  101.       <listitem>
  102.        <para>
  103. Set the date/time representation style. Affects the output format,
  104. and in some cases it can affect the interpretation of input.
  105. <variablelist>
  106.  <varlistentry>
  107.   <term>
  108. ISO
  109.   </term>
  110.   <listitem>
  111.    <para>
  112.     use ISO 8601-style dates and times
  113.    </para>
  114.   </listitem>
  115.  </varlistentry>
  116.  <varlistentry>
  117.   <term>
  118. SQL
  119.   </term>
  120.   <listitem>
  121.    <para>
  122.     use Oracle/Ingres-style dates and times
  123.    </para>
  124.   </listitem>
  125.  </varlistentry>
  126.  <varlistentry>
  127.   <term>
  128. Postgres
  129.   </term>
  130.   <listitem>
  131.    <para>
  132.     use traditional <productname>Postgres</productname> format
  133.    </para>
  134.   </listitem>
  135.  </varlistentry>
  136.  <varlistentry>
  137.   <term>
  138. European
  139.   </term>
  140.   <listitem>
  141.    <para>
  142.     use dd/mm/yyyy for numeric date representations.
  143.    </para>
  144.   </listitem>
  145.  </varlistentry>
  146.  <varlistentry>
  147.   <term>
  148. NonEuropean
  149.   </term>
  150.   <listitem>
  151.    <para>
  152.     use mm/dd/yyyy for numeric date representations.
  153.    </para>
  154.   </listitem>
  155.  </varlistentry>
  156.  <varlistentry>
  157.   <term>
  158. German
  159.   </term>
  160.   <listitem>
  161.    <para>
  162.     use dd.mm.yyyy for numeric date representations.
  163.    </para>
  164.   </listitem>
  165.  </varlistentry>
  166.  <varlistentry>
  167.   <term>
  168. US
  169.   </term>
  170.   <listitem>
  171.    <para>
  172.     same as 'NonEuropean'
  173.    </para>
  174.   </listitem>
  175.  </varlistentry>
  176.  <varlistentry>
  177.   <term>
  178. default
  179.   </term>
  180.   <listitem>
  181.    <para>
  182.     restores the default values ('US,Postgres')
  183.    </para>
  184.   </listitem>
  185.  </varlistentry>
  186. </variablelist>
  187.        </para>
  188.        <para>
  189. Date format initialization may be done by:
  190. <simplelist>
  191.  <member>
  192.   Setting the <envar>PGDATESTYLE</envar> environment variable.
  193.  </member>
  194.  <member>
  195.   Running postmaster using the <option>-o -e</option> option to set
  196.   dates to the <literal>European</literal> convention.
  197.   Note that this affects only the some combinations of date styles; for example
  198.   the ISO style is not affected by this parameter.
  199.  </member>
  200.  <member>
  201.   Changing variables in 
  202.   <filename>src/backend/utils/init/globals.c</filename>.
  203.  </member>
  204. </simplelist>
  205.        </para>
  206.        <para>
  207. The variables in <filename>globals.c</filename> which can be changed are:
  208. <simplelist>
  209.  <member>
  210.   bool EuroDates = false | true
  211.  </member>
  212.  <member>
  213.   int  DateStyle = USE_ISO_DATES | USE_POSTGRES_DATES | USE_SQL_DATES | USE_GERMAN_DATES
  214.  </member>
  215. </simplelist>
  216.        </para>
  217.       </listitem>
  218.      </varlistentry>
  219.      <varlistentry>
  220.       <term>
  221. SERVER_ENCODING
  222.       </term>
  223.       <listitem>
  224.        <para>
  225. Sets the multi-byte server encoding
  226. <variablelist>
  227.  <varlistentry>
  228.   <term>
  229. <replaceable class="parameter">value</replaceable>
  230.   </term>
  231.   <listitem>
  232.    <para>
  233.     Sets the multi-byte server encoding.
  234.    </para>
  235.   </listitem>
  236.  </varlistentry>
  237.  
  238.  <varlistentry>
  239.   <term>
  240. DEFAULT
  241.   </term>
  242.   <listitem>
  243.    <para>
  244.     Sets the multi-byte server encoding.
  245.    </para>
  246.   </listitem>
  247.  </varlistentry>
  248. </variablelist>
  249.        </para>
  250.        <para>
  251. This is only enabled if multi-byte was specified to configure.
  252.        </para>
  253.       </listitem>
  254.      </varlistentry>
  255.      <varlistentry>
  256.       <term>
  257. TIMEZONE
  258.       </term>
  259.       <listitem>
  260.        <para>
  261. The possible values for timezone depends on your operating
  262. system. For example on Linux /usr/lib/zoneinfo contains the
  263. database of timezones.
  264.        </para>
  265.        <para>
  266. Here are some valid values for timezone:
  267. <variablelist>
  268.  <varlistentry>
  269.   <term>
  270. 'PST8PDT'
  271.   </term>
  272.   <listitem>
  273.    <para>
  274.     set the timezone for California
  275.    </para>
  276.   </listitem>
  277.  </varlistentry>
  278.  <varlistentry>
  279.   <term>
  280. 'Portugal'
  281.   </term>
  282.   <listitem>
  283.    <para>
  284.     set time zone for Portugal.
  285.    </para>
  286.   </listitem>
  287.  </varlistentry>
  288.  <varlistentry>
  289.   <term>
  290. 'Europe/Rome'
  291.   </term>
  292.   <listitem>
  293.    <para>
  294.     set time zone for Italy.
  295.    </para>
  296.   </listitem>
  297.  </varlistentry>
  298.  <varlistentry>
  299.   <term>
  300. DEFAULT
  301.   </term>
  302.   <listitem>
  303.    <para>
  304.     set time zone to your local timezone
  305.     (value of the TZ environment variable).
  306.    </para>
  307.   </listitem>
  308.  </varlistentry>
  309. </variablelist>
  310.        </para>
  311.        <para>
  312. If an invalid time zone is specified, the time zone
  313. becomes GMT (on most systems anyway).
  314.        </para>
  315.        <para>
  316. A frontend which uses libpq may be initialized by setting the PGTZ
  317. environment variable.
  318.        </para>
  319.        <para>
  320. The second syntax shown above, allows one to set the timezone
  321. with a syntax similar to SQL92 <command>SET TIME ZONE</command>.
  322. The LOCAL keyword is just an alternate form
  323. of DEFAULT for SQL92 compatibility.
  324.        </para>
  325.       </listitem>
  326.      </varlistentry>
  327.      <varlistentry>
  328.       <term>
  329. TRANSACTION ISOLATION LEVEL
  330.       </term>
  331.       <listitem>
  332.        <para>
  333. Sets the isolation level for the current transaction.
  334. <variablelist>
  335.  <varlistentry>
  336.   <term>
  337. READ COMMITTED
  338.   </term>
  339.   <listitem>
  340.    <para>
  341.     The current transaction queries read only rows committed
  342.     before a query began. READ COMMITTED is the default.
  343.    </para>
  344.    <note>
  345.    <para>
  346.     <acronym>SQL92</acronym> standard requires 
  347.     SERIALIZABLE to be the default isolation level.
  348.    </para>
  349.    </note>
  350.   </listitem>
  351.  </varlistentry>
  352.  
  353.  <varlistentry>
  354.   <term>
  355. SERIALIZABLE
  356.   </term>
  357.   <listitem>
  358.    <para>
  359.     The current transaction queries read only rows committed
  360.     before first DML statement 
  361.     (<command>SELECT/INSERT/DELETE/UPDATE/FETCH/COPY_TO</command>)
  362.     was executed in this transaction. 
  363.    </para>
  364.   </listitem>
  365.  </varlistentry>
  366.  
  367. </variablelist>
  368.        </para>
  369.       </listitem>
  370.      </varlistentry>
  371.     </variablelist>
  372.    </para>
  373.    <para>
  374.     There are also several internal or optimization
  375.     parameters which can be specified
  376.     by the <command>SET</command> command:
  377.     
  378.     <variablelist>
  379.      <varlistentry>
  380.       <term>
  381. COST_HEAP
  382.       </term>
  383.       <listitem>
  384.        <para>
  385. Sets the default cost of a heap scan for use by the optimizer.
  386. <variablelist>
  387.  <varlistentry>
  388.   <term>
  389. <replaceable class="parameter">float4</replaceable>
  390.   </term>
  391.   <listitem>
  392.    <para>
  393.     Set the cost of a heap scan to the specified floating point value.
  394.    </para>
  395.   </listitem>
  396.  </varlistentry>
  397.  
  398.  <varlistentry>
  399.   <term>
  400. DEFAULT
  401.   </term>
  402.   <listitem>
  403.    <para>
  404.     Sets the cost of a heap scan to the default value.
  405.    </para>
  406.   </listitem>
  407.  </varlistentry>
  408. </variablelist>
  409.        </para>
  410.        <para>
  411. The frontend may be initialized by setting the PGCOSTHEAP
  412. environment variable.
  413.        </para>
  414.       </listitem>
  415.      </varlistentry>
  416.      <varlistentry>
  417.       <term>
  418. COST_INDEX
  419.       </term>
  420.       <listitem>
  421.        <para>
  422. Sets the default cost of an index scan for use by the optimizer.
  423. <variablelist>     
  424.  <varlistentry>
  425.   <term>
  426. <replaceable class="parameter">float4</replaceable>
  427.   </term>
  428.   <listitem>
  429.    <para>
  430.     Set the cost of an index scan to the specified floating point value.
  431.    </para>
  432.   </listitem>
  433.  </varlistentry>
  434.  
  435.  <varlistentry>
  436.   <term>
  437. DEFAULT
  438.   </term>
  439.   <listitem>
  440.    <para>
  441.     Sets the cost of an index scan to the default value.
  442.    </para>
  443.   </listitem>
  444.  </varlistentry>
  445. </variablelist>
  446.        </para>
  447.        <para>
  448. The frontend may be initialized by setting the PGCOSTINDEX
  449. environment variable.
  450.        </para>
  451.       </listitem>
  452.      </varlistentry>
  453.      <varlistentry>
  454.       <term>
  455. GEQO
  456.       </term>
  457.       <listitem>
  458.        <para>
  459. Sets the threshold for using the genetic optimizer algorithm.
  460.        
  461. <variablelist>
  462.  <varlistentry>
  463.   <term>
  464. ON
  465.   </term>
  466.   <listitem>
  467.    <para>
  468.     enables the genetic optimizer algorithm
  469.     for statements with 6 or more tables.
  470.    </para>
  471.   </listitem>
  472.  </varlistentry>
  473.  <varlistentry>
  474.   <term>
  475. ON=<replaceable class="parameter">#</replaceable>
  476.   </term>
  477.   <listitem>
  478.    <para>
  479.     Takes an integer argument to enable the genetic optimizer algorithm
  480.     for statements with <replaceable class="parameter">#</replaceable>
  481.     or more tables in the query.
  482.    </para>
  483.   </listitem>
  484.  </varlistentry>
  485.  <varlistentry>
  486.   <term>
  487. OFF
  488.   </term>
  489.   <listitem>
  490.    <para>
  491.     disables the genetic optimizer algorithm.
  492.    </para>
  493.   </listitem>
  494.  </varlistentry>
  495.  <varlistentry>
  496.   <term>
  497. DEFAULT
  498.   </term>
  499.   <listitem>
  500.    <para>
  501.     Equivalent to specifying <command>SET GEQO='ON'</command>
  502.    </para>
  503.   </listitem>
  504.  </varlistentry>
  505. </variablelist>
  506.        </para>
  507.        <para>
  508. This algorithm is on by default, which used GEQO for
  509. statements of eleven or more tables.
  510. (See the chapter on GEQO in the Programmer's Guide
  511. for more information).
  512.        </para>
  513.        <para>
  514. The frontend may be initialized by setting PGGEQO
  515. environment variable.
  516.        </para>
  517.        <para>
  518. It may be useful when joining big relations with
  519. small ones. This algorithm is off by default.
  520. It's not used by GEQO anyway.
  521.        </para>
  522.       </listitem>
  523.      </varlistentry>
  524.      <varlistentry>
  525.       <term>
  526. KSQO
  527.       </term>
  528.       <listitem>
  529.        <para>
  530. <firstterm>Key Set Query Optimizer</firstterm> forces the query optimizer
  531. to optimize repetative OR clauses such as generated by
  532. <productname>MicroSoft Access</productname>:
  533.        
  534. <variablelist>
  535.  <varlistentry>
  536.   <term>
  537. ON
  538.   </term>
  539.   <listitem>
  540.    <para>
  541.     enables this optimization.
  542.    </para>
  543.   </listitem>
  544.  </varlistentry>
  545.  <varlistentry>
  546.   <term>
  547. OFF
  548.   </term>
  549.   <listitem>
  550.    <para>
  551.     disables this optimization.
  552.    </para>
  553.   </listitem>
  554.  </varlistentry>
  555.  
  556.  <varlistentry>
  557.   <term>
  558. DEFAULT
  559.   </term>
  560.   <listitem>
  561.    <para>
  562.     Equivalent to specifying <command>SET KSQO='OFF'</command>.
  563.    </para>
  564.   </listitem>
  565.  </varlistentry>
  566. </variablelist>
  567.        </para>
  568.        <para>
  569. It may be useful when joining big relations with
  570. small ones. This algorithm is off by default.
  571. It's not used by GEQO anyway.
  572.        </para>
  573.        <para>
  574. The frontend may be initialized by setting the PGKSQO
  575. environment variable.
  576.        </para>
  577.       </listitem>
  578.      </varlistentry>
  579.     </variablelist>
  580.    </para>
  581.   </refsect2>
  582.   <refsect2 id="R2-SQL-SET-2">
  583.    <refsect2info>
  584.     <date>1998-09-24</date>
  585.    </refsect2info>
  586.    <title>
  587.     Outputs
  588.    </title>
  589.    <para>
  590.     
  591.     <variablelist>
  592.      <varlistentry>
  593.       <term>
  594. <returnvalue>SET VARIABLE</returnvalue>
  595.       </term>
  596.       <listitem>
  597.        <para>
  598. Message returned if successfully.
  599.        </para>
  600.       </listitem>
  601.      </varlistentry>
  602.      
  603.      <varlistentry>
  604.       <term>
  605. <returnvalue>WARN:  Bad value for <replaceable class="parameter">variable</replaceable> (<replaceable class="parameter">value</replaceable>)</returnvalue>
  606.       </term>
  607.       <listitem>
  608.        <para>
  609. If the command fails to set the specified variable.
  610.        </para>
  611.       </listitem>
  612.      </varlistentry>
  613.      
  614.     </variablelist>
  615.    </para>
  616.   </refsect2>
  617.  </refsynopsisdiv>
  618.  
  619.  <refsect1 id="R1-SQL-SET-1">
  620.   <refsect1info>
  621.    <date>1998-09-24</date>
  622.   </refsect1info>
  623.   <title>
  624.    Description
  625.   </title>
  626.   <para>
  627.    <command>SET</command> will modify configuration parameters for variable during
  628.    a session.
  629.   </para>
  630.   <para>
  631.    Current values can be obtained using <command>SHOW</command>, and values
  632.    can be restored to the defaults using <command>RESET</command>.
  633.    Parameters and values are case-insensitive. Note that the value
  634.    field is always specified as a string, so is enclosed in
  635.    single-quotes.
  636.   </para>
  637.   <para>
  638.    <command>SET TIME ZONE</command> changes the session's
  639.    default time zone offset.
  640.    An SQL-session always begins with an initial default time zone
  641.    offset.
  642.    The <command>SET TIME ZONE</command> statement is used to change the default
  643.    time zone offset for the current SQL session.
  644.   </para>
  645.   
  646.   <refsect2 id="R2-SQL-SET-3">
  647.    <refsect2info>
  648.     <date>1998-09-24</date>
  649.    </refsect2info>
  650.    <title>
  651.     Notes
  652.    </title>
  653.    <para>
  654.     The <command>SET <replaceable class="parameter">variable</replaceable></command>
  655.     statement is a <productname>Postgres</productname> language extension.
  656.    </para>
  657.    <para>
  658.     Refer to <command>SHOW</command> and <command>RESET</command> to 
  659.     display or reset the current values.
  660.    </para>
  661.   </refsect2>
  662.  </refsect1>
  663.  
  664.  <refsect1 id="R1-SQL-SET-2">
  665.   <title>
  666.    Usage
  667.   </title>
  668.   <para>
  669.    Set the style of date to ISO:
  670.    
  671.    <programlisting>
  672.    SET DATESTYLE TO 'ISO';
  673.    </programlisting>
  674.    Enable GEQO for queries with 4 or more tables:
  675.    <programlisting> 
  676.    SET GEQO ON=4;
  677.    </programlisting>
  678.    Set GEQO to default:
  679.    <programlisting> 
  680.    SET GEQO = DEFAULT;
  681.    </programlisting>
  682.    Set the timezone for Berkeley, California:
  683.    <programlisting> 
  684.    SET TIME ZONE 'PST8PDT';
  685.    SELECT CURRENT_TIMESTAMP AS today;
  686.    
  687.    today
  688.    ----------------------
  689.    1998-03-31 07:41:21-08
  690.    </programlisting>
  691.    Set the timezone for Italy:
  692.    <programlisting> 
  693.    SET TIME ZONE 'Europe/Rome';
  694.    SELECT CURRENT_TIMESTAMP AS today;
  695.    
  696.    today
  697.    ----------------------
  698.    1998-03-31 17:41:31+02
  699.    </programlisting>
  700.   </para>
  701.  </refsect1>
  702.  <refsect1 id="R1-SQL-SET-3">
  703.   <title>
  704.    Compatibility
  705.   </title>
  706.   <para>
  707.   </para>
  708.   
  709.   <refsect2 id="R2-SQL-SET-4">
  710.    <refsect2info>
  711.     <date>1998-09-24</date>
  712.    </refsect2info>
  713.    <title>
  714.     SQL92
  715.    </title>
  716.    <para>
  717.     There is no
  718.     <command>SET <replaceable class="parameter">variable</replaceable></command>
  719.     in <acronym>SQL92</acronym> (except for SET TRANSACTION ISOLATION LEVEL).
  720.     
  721.     The <acronym>SQL92</acronym> syntax for <command>SET TIME ZONE</command>
  722.     is slightly different,
  723.     allowing only a single integer value for time zone specification:
  724.     
  725.     <programlisting>
  726.      SET TIME ZONE { interval_value_expression | LOCAL }
  727.     </programlisting>
  728.    </para>
  729.   </refsect2>
  730.  </refsect1>
  731. </refentry>
  732. <!-- Keep this comment at the end of the file
  733. Local variables:
  734. mode: sgml
  735. sgml-omittag:nil
  736. sgml-shorttag:t
  737. sgml-minimize-attributes:nil
  738. sgml-always-quote-attributes:t
  739. sgml-indent-step:1
  740. sgml-indent-data:t
  741. sgml-parent-document:nil
  742. sgml-default-dtd-file:"../reference.ced"
  743. sgml-exposed-tags:nil
  744. sgml-local-catalogs:"/usr/lib/sgml/CATALOG"
  745. sgml-local-ecat-files:nil
  746. End:
  747. -->