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

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-BEGINWORK">
  2.  <refmeta>
  3.   <refentrytitle id="SQL-BEGINWORK-TITLE">
  4.    BEGIN
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    BEGIN
  11.   </refname>
  12.   <refpurpose>
  13.    Begins a transaction in chained mode
  14.   </refpurpose>
  15.   
  16.   </refnamediv>
  17.  <refsynopsisdiv>
  18.   <refsynopsisdivinfo>
  19.    <date>1999-06-11</date>
  20.   </refsynopsisdivinfo>
  21.   <synopsis>  
  22. BEGIN [ WORK | TRANSACTION ]
  23.   </synopsis>
  24.   
  25.   <refsect2 id="R2-SQL-BEGINWORK-1">
  26.    <refsect2info>
  27.     <date>1999-06-11</date>
  28.    </refsect2info>
  29.    <title>
  30.     Inputs
  31.    </title>
  32.    <para>
  33.     None.
  34.    </para>
  35.   </refsect2>
  36.   
  37.   <refsect2 id="R2-SQL-BEGINWORK-2">
  38.    <refsect2info>
  39.     <date>1999-06-11</date>
  40.    </refsect2info>
  41.    <title>
  42.     Outputs
  43.    </title>
  44.    <para>
  45.     <variablelist>
  46.      <varlistentry>
  47.       <term><computeroutput>
  48. BEGIN
  49.        </computeroutput></term>
  50.       <listitem>
  51.        <para>
  52. This signifies that a new transaction has been started.
  53.        </para>
  54.       </listitem>
  55.      </varlistentry>
  56.      <varlistentry>
  57.       <term><computeroutput>
  58. NOTICE:  BeginTransactionBlock and not in default state
  59.        </computeroutput></term>
  60.       <listitem>
  61.        <para>
  62. This indicates that a transaction was already in progress.
  63. The current transaction is not affected.
  64.        </para>
  65.       </listitem>
  66.      </varlistentry>
  67.     </variablelist>
  68.    </para>
  69.   </refsect2>
  70.  </refsynopsisdiv>
  71.  
  72.  <refsect1 id="R1-SQL-BEGINWORK-1">
  73.   <refsect1info>
  74.    <date>1999-06-11</date>
  75.   </refsect1info>
  76.   <title>
  77.    Description
  78.   </title>
  79.   <para>
  80.    By default, <productname>Postgres</productname> executes transactions
  81.    in <firstterm>unchained mode</firstterm>
  82.    (also known as <quote>autocommit</quote> in other database
  83.    systems).
  84.    In other words, each user statement is executed in its own transaction
  85.    and a commit is implicitly performed at the end of the statement
  86.    (if execution was successful, otherwise a rollback is done).
  87.    <command>BEGIN</command> initiates a user transaction in chained mode,
  88.    i.e. all user statements after <command>BEGIN</command> command will
  89.    be executed in a single transaction until an explicit COMMIT, ROLLBACK
  90.    or execution abort. Statements in chained mode are executed much faster, 
  91.    because transaction start/commit requires significant CPU and disk 
  92.    activity. Execution of multiple statements inside a transaction
  93.    is also required for consistency when changing several
  94.    related tables.
  95.   </para>
  96.   <para>
  97.    The default transaction isolation level in
  98.    <productname>Postgres</productname>
  99.    is READ COMMITTED, where queries inside the transaction see only changes
  100.    committed before query execution. So, you have to use 
  101.    <command>SET TRANSACTION ISOLATION LEVEL SERIALIZABLE</command>
  102.    just after BEGIN if you need more rigorous transaction isolation. 
  103.    In SERIALIZABLE mode queries will see only changes committed before
  104.    the entire
  105.    transaction began (actually, before execution of the first DML statement
  106.    in a serializable transaction).
  107.   </para>
  108.   <para>
  109.    If the transaction is committed, <productname>Postgres</productname> 
  110.    will ensure either that all updates are done or else that none of
  111.    them are done. Transactions have the standard <acronym>ACID</acronym>
  112.    (atomic, consistent, isolatable, and durable) property.
  113.   </para>
  114.   
  115.   <refsect2 id="R2-SQL-BEGINWORK-3">
  116.    <refsect2info>
  117.     <date>1999-06-11</date>
  118.    </refsect2info>
  119.    <title>
  120.     Notes
  121.    </title>
  122.    <para>
  123.     The keyword TRANSACTION is just a cosmetic alternative to WORK.
  124.     Neither keyword need be specified.
  125.    </para>
  126.    <para>
  127.     Refer to the <command>LOCK</command> statement for further information
  128.     about locking tables inside a transaction.
  129.    </para>
  130.    
  131.    <para>
  132.     Use <xref linkend="SQL-COMMIT-TITLE" endterm="SQL-COMMIT-TITLE">
  133.     or
  134.     <xref linkend="SQL-ROLLBACK-TITLE" endterm="SQL-ROLLBACK-TITLE">
  135.     to terminate a transaction.
  136.    </para>
  137.   </refsect2>
  138.  </refsect1>
  139.  <refsect1 id="R1-SQL-BEGINWORK-2">
  140.   <title>
  141.    Usage
  142.   </title>
  143.   <para>
  144.    To begin a user transaction:
  145.   <programlisting>
  146. BEGIN WORK;
  147.   </programlisting>
  148.   </para>
  149.  </refsect1>
  150.  
  151.  <refsect1 id="R1-SQL-BEGINWORK-3">
  152.   <title>
  153.    Compatibility
  154.   </title>
  155.   <para>
  156.     <command>BEGIN</command>
  157.     is a <productname>Postgres</productname> language extension.
  158.   </para>
  159.   <refsect2 id="R2-SQL-BEGINWORK-4">
  160.      <refsect2info>
  161.     <date>1999-06-11</date>
  162.    </refsect2info>
  163.    <title>
  164.     SQL92
  165.    </title>
  166.    <para> 
  167.     There is no explicit BEGIN WORK command in <acronym>SQL92</acronym>;
  168.     transaction initiation is always implicit and it terminates either 
  169.     with a COMMIT or with a ROLLBACK statement.
  170.     <note>
  171.      <para>
  172.       Many relational database systems offer an autocommit feature as a
  173.       convenience.
  174.      </para>
  175.     </note>
  176.    </para>
  177.    <para>
  178.     <acronym>SQL92</acronym> also requires SERIALIZABLE to be the default
  179.     transaction isolation level.
  180.    </para>
  181.   </refsect2>
  182.  </refsect1>
  183. </refentry>
  184.  
  185. <!-- Keep this comment at the end of the file
  186. Local variables:
  187. mode: sgml
  188. sgml-omittag:nil
  189. sgml-shorttag:t
  190. sgml-minimize-attributes:nil
  191. sgml-always-quote-attributes:t
  192. sgml-indent-step:1
  193. sgml-indent-data:t
  194. sgml-parent-document:nil
  195. sgml-default-dtd-file:"../reference.ced"
  196. sgml-exposed-tags:nil
  197. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  198. sgml-local-ecat-files:nil
  199. End:
  200. -->