11<!--
2- $Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.14 2001/09/03 12:57:49 petere Exp $
3- Postgres documentation
2+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.15 2001/12/08 03:24:34 thomas Exp $
3+ PostgreSQL documentation
44-->
55
66<refentry id="SQL-BEGIN">
@@ -95,7 +95,7 @@ NOTICE: BEGIN: already a transaction in progress
9595 </title>
9696
9797 <para>
98- By default, <productname>Postgres </productname> executes transactions
98+ By default, <productname>PostgreSQL </productname> executes transactions
9999 in <firstterm>unchained mode</firstterm>
100100 (also known as <quote>autocommit</quote> in other database
101101 systems).
@@ -116,7 +116,7 @@ NOTICE: BEGIN: already a transaction in progress
116116
117117 <para>
118118 The default transaction isolation level in
119- <productname>Postgres </productname>
119+ <productname>PostgreSQL </productname>
120120 is READ COMMITTED, where queries inside the transaction see only changes
121121 committed before query execution. So, you have to use
122122 <command>SET TRANSACTION ISOLATION LEVEL SERIALIZABLE</command>
@@ -128,7 +128,7 @@ NOTICE: BEGIN: already a transaction in progress
128128 </para>
129129
130130 <para>
131- If the transaction is committed, <productname>Postgres </productname>
131+ If the transaction is committed, <productname>PostgreSQL </productname>
132132 will ensure either that all updates are done or else that none of
133133 them are done. Transactions have the standard <acronym>ACID</acronym>
134134 (atomic, consistent, isolatable, and durable) property.
@@ -185,7 +185,7 @@ BEGIN WORK;
185185
186186 <para>
187187 <command>BEGIN</command>
188- is a <productname>Postgres </productname> language extension.
188+ is a <productname>PostgreSQL </productname> language extension.
189189 There is no explicit <command>BEGIN</command>
190190 command in <acronym>SQL92</acronym>;
191191 transaction initiation is always implicit and it terminates either