Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
9c279355
Commit
9c279355
authored
22 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Updates to reflect availability of autocommit option.
parent
26993b29
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/sgml/ref/begin.sgml
+30
-17
30 additions, 17 deletions
doc/src/sgml/ref/begin.sgml
doc/src/sgml/ref/start_transaction.sgml
+15
-8
15 additions, 8 deletions
doc/src/sgml/ref/start_transaction.sgml
with
45 additions
and
25 deletions
doc/src/sgml/ref/begin.sgml
+
30
−
17
View file @
9c279355
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.1
8
2002/08/
04 04:31:44 momjian
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/begin.sgml,v 1.1
9
2002/08/
30 22:45:25 tgl
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -103,33 +103,35 @@ WARNING: BEGIN: already a transaction in progress
...
@@ -103,33 +103,35 @@ WARNING: BEGIN: already a transaction in progress
<command>BEGIN</command> initiates a user transaction in chained mode,
<command>BEGIN</command> initiates a user transaction in chained mode,
i.e., all user statements after <command>BEGIN</command> command will
i.e., all user statements after <command>BEGIN</command> command will
be executed in a single transaction until an explicit
be executed in a single transaction until an explicit
<xref linkend="sql-commit" endterm="sql-commit-title">
,
<xref linkend="sql-commit" endterm="sql-commit-title">
or
<xref linkend="sql-rollback" endterm="sql-rollback-title">
,
<xref linkend="sql-rollback" endterm="sql-rollback-title">
.
or execution abort. Statements in chained mode are executed much faster,
Statements are executed more quickly in chained mode,
because transaction start/commit requires significant CPU and disk
because transaction start/commit requires significant CPU and disk
activity. Execution of multiple statements inside a transaction
activity. Execution of multiple statements inside a transaction
is also required for consistency when changing several
is also useful to ensure consistency when changing several
related tables.
related tables: other clients will be unable to see the intermediate
states wherein not all the related updates have been done.
</para>
</para>
<para>
<para>
The default transaction isolation level in
The default transaction isolation level in
<productname>PostgreSQL</productname>
<productname>PostgreSQL</productname>
is READ COMMITTED, where quer
ies
inside the transaction see
only
changes
is READ COMMITTED, where
in each
quer
y
inside the transaction see
s
changes
committed before
query
execution. So, you have to use
committed before
that query begins
execution. So, you have to use
<command>SET TRANSACTION ISOLATION LEVEL SERIALIZABLE</command>
<command>SET TRANSACTION ISOLATION LEVEL SERIALIZABLE</command>
just after <command>BEGIN</command> if you need more rigorous transaction isolation.
just after <command>BEGIN</command> if you need more rigorous transaction
isolation. (Alternatively, you can change the default transaction
isolation level; see the <citetitle>PostgreSQL Administrator's
Guide</citetitle> for details.)
In SERIALIZABLE mode queries will see only changes committed before
In SERIALIZABLE mode queries will see only changes committed before
the entire
the entire
transaction began (actually, before execution of the first DML statement
transaction began (actually, before execution of the first DML statement
in
a serializabl
e transaction).
in
th
e transaction).
</para>
</para>
<para>
<para>
If the transaction is committed, <productname>PostgreSQL</productname>
Transactions have the standard <acronym>ACID</acronym>
will ensure either that all updates are done or else that none of
(atomic, consistent, isolatable, and durable) properties.
them are done. Transactions have the standard <acronym>ACID</acronym>
(atomic, consistent, isolatable, and durable) property.
</para>
</para>
<refsect2 id="R2-SQL-BEGIN-3">
<refsect2 id="R2-SQL-BEGIN-3">
...
@@ -140,9 +142,9 @@ WARNING: BEGIN: already a transaction in progress
...
@@ -140,9 +142,9 @@ WARNING: BEGIN: already a transaction in progress
Notes
Notes
</title>
</title>
<para>
<para>
Refer to
<xref linkend="sql-
lock" endterm="sql-lock-title">
<xref linkend="sql-
start-transaction"
for further information
endterm="sql-start-transaction-title"> has the same functionality
a
bout locking tables inside a transaction
.
a
s <command>BEGIN</>
.
</para>
</para>
<para>
<para>
...
@@ -151,6 +153,17 @@ WARNING: BEGIN: already a transaction in progress
...
@@ -151,6 +153,17 @@ WARNING: BEGIN: already a transaction in progress
<xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE">
<xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE">
to terminate a transaction.
to terminate a transaction.
</para>
</para>
<para>
Refer to <xref linkend="sql-lock" endterm="sql-lock-title">
for further information
about locking tables inside a transaction.
</para>
<para>
If you turn <literal>autocommit</> mode off, then <command>BEGIN</>
is not required: any SQL command automatically starts a transaction.
</para>
</refsect2>
</refsect2>
</refsect1>
</refsect1>
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/ref/start_transaction.sgml
+
15
−
8
View file @
9c279355
<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/start_transaction.sgml,v 1.2 2002/08/06 05:32:16 momjian Exp $ -->
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/start_transaction.sgml,v 1.3 2002/08/30 22:45:25 tgl Exp $
PostgreSQL documentation
-->
<refentry id="SQL-START-TRANSACTION">
<refentry id="SQL-START-TRANSACTION">
<docinfo>
<docinfo>
<date>2002-07-26</date>
<date>2002-07-26</date>
...
@@ -76,7 +80,7 @@ WARNING: BEGIN: already a transaction in progress
...
@@ -76,7 +80,7 @@ WARNING: BEGIN: already a transaction in progress
This command begins a new transaction. If the isolation level is
This command begins a new transaction. If the isolation level is
specified, the new transaction has that isolation level. In all other
specified, the new transaction has that isolation level. In all other
respects, the behavior of this command is identical to the
respects, the behavior of this command is identical to the
<
command>BEGIN</command
> command.
<
xref linkend="sql-begin" endterm="sql-begin-title"
> command.
</para>
</para>
</refsect1>
</refsect1>
...
@@ -87,8 +91,8 @@ WARNING: BEGIN: already a transaction in progress
...
@@ -87,8 +91,8 @@ WARNING: BEGIN: already a transaction in progress
<para>
<para>
The isolation level of a transaction can also be set with the <xref
The isolation level of a transaction can also be set with the <xref
linkend="sql-set-transaction" endterm="sql-set-transaction-title">
linkend="sql-set-transaction" endterm="sql-set-transaction-title">
command. If no isolation level is specified, the
level
default
s to
command. If no isolation level is specified, the default
isolation
<option>READ COMMITTED</option>
.
level is used
.
</para>
</para>
</refsect1>
</refsect1>
...
@@ -99,11 +103,14 @@ WARNING: BEGIN: already a transaction in progress
...
@@ -99,11 +103,14 @@ WARNING: BEGIN: already a transaction in progress
<title>SQL99</title>
<title>SQL99</title>
<para>
<para>
<option>SERIALIZABLE</option> is the default level in
<option>SERIALIZABLE</option> is the default isolation level in
<acronym>SQL</acronym>. <productname>PostgreSQL</productname>
<acronym>SQL99</acronym>, but it is not the usual default in
<productname>PostgreSQL</productname>: the factory default setting
is READ COMMITTED.
<productname>PostgreSQL</productname>
does not provide the isolation levels <option>READ UNCOMMITTED</option>
does not provide the isolation levels <option>READ UNCOMMITTED</option>
and <option>REPEATABLE READ</option>. Because of
multiversion
and <option>REPEATABLE READ</option>. Because of
lack of predicate
concurrency control
, the <option>SERIALIZABLE</option> level is
locking
, the <option>SERIALIZABLE</option> level is
not truly serializable. See the <citetitle>User's Guide</citetitle>
not truly serializable. See the <citetitle>User's Guide</citetitle>
for details.
for details.
</para>
</para>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment