Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
962c66d8
Commit
962c66d8
authored
Jun 11, 1999
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More about chained mode and isolation levels.
parent
3b9ef4d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
16 deletions
+35
-16
doc/src/sgml/ref/begin.sgml
doc/src/sgml/ref/begin.sgml
+35
-16
No files found.
doc/src/sgml/ref/begin.sgml
View file @
962c66d8
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
BEGIN WORK
BEGIN WORK
</REFNAME>
</REFNAME>
<REFPURPOSE>
<REFPURPOSE>
Begins a transaction
Begins a transaction
in chained mode
</REFPURPOSE>
</REFPURPOSE>
</refnamediv>
</refnamediv>
...
@@ -78,15 +78,31 @@ BEGIN [ WORK | TRANSACTION ]
...
@@ -78,15 +78,31 @@ BEGIN [ WORK | TRANSACTION ]
Description
Description
</TITLE>
</TITLE>
<para>
<para>
<command>BEGIN</command> initiates a user transaction
By default, <productname>Postgres</productname> executes transactions
which <productname>Postgres</productname> will
in unchained mode (also known as autocommit feature in other DBMSes).
guarantee is serializable with respect to all concurrently
In other words, each user statement is executed in its own transaction
executing transactions. <productname>Postgres</productname> uses two-phase
and commit is implicit (if execution was successfull).
locking
<command>BEGIN</command> initiates a user transaction in chained mode,
to perform this task. If the transaction is committed,
i.e. all user statements after <command>BEGIN</command> command will
<productname>Postgres</productname> will ensure either that all updates are
be executed in single transaction untill explicit COMMIT, ROLLBACK
done or else
or execution abort. Statements in chained mode are executed much faster,
that none of
because of transaction start/commit requires significant CPU and disk
activity. This mode is also required for consistency when changing
one of related tables.
</para>
<para>
Default transaction isolation level in <productname>Postgres</productname>
is READ COMMITTED one, when queries inside transaction see only changes
committed before query execution. So, you have to use
<command>SET TRANSACTION ISOLATION LEVEL SERIALIZABLE</command>
command just after BEGIN if you need in better transaction isolation.
In SERIALIZABLE mode queries will see only changes committed before entire
transaction began (actually, before execution of first DML statement
in serializable transaction).
</para>
<para>
If the transaction is committed, <productname>Postgres</productname>
will ensure either that all updates are done or else that none of
them are done. Transactions have the standard ACID
them are done. Transactions have the standard ACID
(atomic, consistent, isolatable, and durable) property.
(atomic, consistent, isolatable, and durable) property.
</para>
</para>
...
@@ -105,12 +121,12 @@ BEGIN [ WORK | TRANSACTION ]
...
@@ -105,12 +121,12 @@ BEGIN [ WORK | TRANSACTION ]
<PARA>
<PARA>
Refer to the <command>LOCK</command> statement for further information
Refer to the <command>LOCK</command> statement for further information
about locking tables inside a transaction.
about locking tables inside a transaction.
</PARA>
</PARA>
<PARA>
<PARA>
Use <command>COMMIT</command> or <command>ROLLBACK</command>
Use <command>COMMIT</command> or <command>ROLLBACK</command>
to terminate a transaction.
to terminate a transaction.
</PARA>
</PARA>
</REFSECT2>
</REFSECT2>
</refsect1>
</refsect1>
...
@@ -133,7 +149,7 @@ BEGIN WORK;
...
@@ -133,7 +149,7 @@ BEGIN WORK;
</TITLE>
</TITLE>
<PARA>
<PARA>
<command>BEGIN</command>
<command>BEGIN</command>
is a <productname>Postgres</productname> language extension.
is a <productname>Postgres</productname> language extension.
</para>
</para>
<REFSECT2 ID="R2-SQL-BEGINWORK-4">
<REFSECT2 ID="R2-SQL-BEGINWORK-4">
<REFSECT2INFO>
<REFSECT2INFO>
...
@@ -144,9 +160,12 @@ BEGIN WORK;
...
@@ -144,9 +160,12 @@ BEGIN WORK;
</TITLE>
</TITLE>
<PARA>
<PARA>
There is no explicit BEGIN WORK command in <acronym>SQL92</acronym>;
There is no explicit BEGIN WORK command in <acronym>SQL92</acronym>;
transaction initiation
transaction initiation is always implicit and it terminates either
is always implicit and it terminates either with a COMMIT or with
with a COMMIT or with a ROLLBACK statement.
a ROLLBACK statement.
</PARA>
<PARA>
<acronym>SQL92</acronym> also requires SERIALIZABLE to be default
transaction isolation level.
</PARA>
</PARA>
</refsect2>
</refsect2>
</refsect1>
</refsect1>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment