From 10e9cd22991b352685fe49cfa92dbcd72048c711 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 30 Jun 2001 22:03:26 +0000 Subject: Allow default transaction isolation level (a.k.a. set session characteristics) to be set through GUC. --- doc/src/sgml/ref/set_transaction.sgml | 14 +++++++++++++- doc/src/sgml/runtime.sgml | 31 +++++++++++++++++++++++++++---- 2 files changed, 40 insertions(+), 5 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/ref/set_transaction.sgml b/doc/src/sgml/ref/set_transaction.sgml index 488ee6ac31c..aa97b2f7d43 100644 --- a/doc/src/sgml/ref/set_transaction.sgml +++ b/doc/src/sgml/ref/set_transaction.sgml @@ -1,4 +1,4 @@ - + 2000-11-24 @@ -74,6 +74,18 @@ SET SESSION CHARACTERISTICS AS TRANSACTION ISOLATION LEVEL { READ COMMITTED | SE + + Notes + + + The session default transaction isolation level can also be set + with the command SET default_transaction_isolation = + 'value' and in the + configuration file. Consult the Administrator's + Guide for more information. + + + Compatibility diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 730d031a0f9..f73bddf354b 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ @@ -996,6 +996,29 @@ env PGOPTIONS='-c geqo=off' psql + + + transaction isolation level + + + DEFAUL_TRANSACTION_ISOLATION (string) + + + Each SQL transaction has an isolation level, which can be + either read committed or + serializable. This parameter controls what the + isolation level of each new transaction is set to. The + default is read committed. + + + + Consult the PostgreSQL User's Guide and + the command SET TRANSACTION for more + information. + + + + DYNAMIC_LIBRARY_PATH (string) @@ -1051,9 +1074,9 @@ dynamic_library_path = '/usr/local/lib:/home/my_project/lib:$libdir:$libdir/cont will use the fsync() system call in several places to make sure that updates are physically written to disk and do not hang around in the kernel buffer cache. This - increases the chance that a database installation will still - be usable after an operating system or hardware crash by a - large amount. (Crashes of the database server itself do + increases the chance by a large amount that a database + installation will still be usable after an operating system or + hardware crash. (Crashes of the database server itself do not affect this consideration.) -- cgit v1.2.3