doc/book/en/admin/config.rst
branchstable
changeset 7597 c6cf2a9b2331
parent 7529 2fdc310be7cd
child 8331 fada118921d6
--- a/doc/book/en/admin/config.rst	Thu Jun 30 09:46:33 2011 +0200
+++ b/doc/book/en/admin/config.rst	Wed Jun 29 13:03:04 2011 +0200
@@ -190,6 +190,21 @@
   db-encoding=utf8
 
 
+You need to change the default settings on the database by running::
+
+ ALTER DATABASE <databasename> SET READ_COMMITTED_SNAPSHOT ON;
+
+The ALTER DATABASE command above requires some permissions that your
+user may not have. In that case you will have to ask your local DBA to
+run the query for you. 
+
+You can check that the setting is correct by running the following
+query which must return '1'::
+
+   SELECT is_read_committed_snapshot_on 
+     FROM sys.databases WHERE name='<databasename>';
+
+
 
 .. _SQLiteConfiguration: