lock.sgml 8.3 KB
Newer Older
1
<!--
P
Peter Eisentraut 已提交
2
$Header: /cvsroot/pgsql/doc/src/sgml/ref/lock.sgml,v 1.36 2003/08/31 17:32:23 petere Exp $
3
PostgreSQL documentation
4 5
-->

6 7
<refentry id="SQL-LOCK">
 <refmeta>
8
  <refentrytitle id="sql-lock-title">LOCK</refentrytitle>
9 10
  <refmiscinfo>SQL - Language Statements</refmiscinfo>
 </refmeta>
11

12
 <refnamediv>
13 14
  <refname>LOCK</refname>
  <refpurpose>lock a table</refpurpose>
15
 </refnamediv>
16

P
Peter Eisentraut 已提交
17 18 19 20
 <indexterm zone="sql-lock">
  <primary>LOCK</primary>
 </indexterm>

21
 <refsynopsisdiv>
22 23
<synopsis>
LOCK [ TABLE ] <replaceable class="PARAMETER">name</replaceable> [, ...] [ IN <replaceable class="PARAMETER">lockmode</replaceable> MODE ]
24 25 26

where <replaceable class="PARAMETER">lockmode</replaceable> is one of:

27 28 29
    ACCESS SHARE | ROW SHARE | ROW EXCLUSIVE | SHARE UPDATE EXCLUSIVE
    | SHARE | SHARE ROW EXCLUSIVE | EXCLUSIVE | ACCESS EXCLUSIVE
</synopsis>
30
 </refsynopsisdiv>
31

32 33
 <refsect1>
  <title>Description</title>
B
Bruce Momjian 已提交
34

T
Thomas G. Lockhart 已提交
35
  <para>
36 37 38 39 40
   <command>LOCK TABLE</command> obtains a table-level lock, waiting if
   necessary for any conflicting locks to be released.  Once obtained,
   the lock is held for the remainder of the current transaction.
   (There is no <command>UNLOCK TABLE</command> command; locks are always
   released at transaction end.)
T
Thomas G. Lockhart 已提交
41
  </para>
B
Bruce Momjian 已提交
42

T
Thomas G. Lockhart 已提交
43
  <para>
44 45 46
   When acquiring locks automatically for commands that reference
   tables, <productname>PostgreSQL</productname> always uses the least
   restrictive lock mode possible. <command>LOCK TABLE</command>
47
   provides for cases when you might need more restrictive locking.
48 49 50 51
   For example, suppose an application runs a transaction at the
   isolation level read committed and needs to ensure that data in a
   table remains stable for the duration of the transaction. To
   achieve this you could obtain <literal>SHARE</> lock mode over the
52
   table before querying. This will prevent concurrent data changes
53 54 55 56 57 58 59 60 61
   and ensure subsequent reads of the table see a stable view of
   committed data, because <literal>SHARE</> lock mode conflicts with
   the <literal>ROW EXCLUSIVE</> lock acquired by writers, and your
   <command>LOCK TABLE <replaceable
   class="PARAMETER">name</replaceable> IN SHARE MODE</command>
   statement will wait until any concurrent holders of <literal>ROW
   EXCLUSIVE</literal> mode locks commit or roll back. Thus, once you
   obtain the lock, there are no uncommitted writes outstanding;
   furthermore none can begin until you release the lock.
V
Vadim B. Mikheev 已提交
62
  </para>
63

64
  <para>
65 66 67 68 69 70 71 72
   To achieve a similar effect when running a transaction at the
   isolation level serializable, you have to execute the <command>LOCK
   TABLE</> statement before executing any data modification
   statement.  A serializable transaction's view of data will be
   frozen when its first data modification statement begins.  A later
   <command>LOCK TABLE</> will still prevent concurrent writes --- but it
   won't ensure that what the transaction reads corresponds to the
   latest committed values.
73
  </para>
V
Vadim B. Mikheev 已提交
74 75
  
  <para>
76 77 78 79 80 81 82 83 84 85 86 87 88 89
   If a transaction of this sort is going to change the data in the
   table, then it should use <literal>SHARE ROW EXCLUSIVE</> lock mode
   instead of <literal>SHARE</> mode.  This ensures that only one
   transaction of this type runs at a time.  Without this, a deadlock
   is possible: two transactions might both acquire <literal>SHARE</>
   mode, and then be unable to also acquire <literal>ROW EXCLUSIVE</>
   mode to actually perform their updates.  (Note that a transaction's
   own locks never conflict, so a transaction can acquire <literal>ROW
   EXCLUSIVE</> mode when it holds <literal>SHARE</> mode --- but not
   if anyone else holds <literal>SHARE</> mode.)  To avoid deadlocks,
   make sure all transactions acquire locks on the same objects in the
   same order, and if multiple lock modes are involved for a single
   object, then transactions should always acquire the most
   restrictive mode first.
V
Vadim B. Mikheev 已提交
90
  </para>
91

92
  <para>
93 94
   More information about the lock modes and locking strategies can be
   found in <xref linkend="explicit-locking">.
95
  </para>
96
 </refsect1>
97

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
 <refsect1>
  <title>Parameters</title>

  <variablelist>
   <varlistentry>
    <term><replaceable class="PARAMETER">name</replaceable></term>
    <listitem>
     <para>
      The name (optionally schema-qualified) of an existing table to
      lock.
     </para>

     <para>
      The command <literal>LOCK a, b;</> is equivalent to
      <literal>LOCK a; LOCK b;</>. The tables are locked one-by-one in
      the order specified in the <command>LOCK</command> command.
     </para>
    </listitem>
   </varlistentry>

   <varlistentry>
    <term><replaceable class="parameter">lockmode</replaceable></term>
    <listitem>
     <para>
      The lock mode specifies which locks this lock conflicts with.
      Lock modes are described in <xref linkend="explicit-locking">.
     </para>

     <para>
      If no lock mode is specified, then <literal>ACCESS
      EXCLUSIVE</literal>, the most restrictive mode, is used.
     </para>
    </listitem>
   </varlistentry>
  </variablelist>
 </refsect1>
134

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
 <refsect1>
  <title>Diagnostics</title>

  <variablelist>
   <varlistentry>
    <term><computeroutput>LOCK TABLE</computeroutput></term>
    <listitem>
     <para>
      Message returned if the lock was successfully acquired.
     </para>
    </listitem>
   </varlistentry>
  </variablelist>
 </refsect1>

 <refsect1>
  <title>Notes</title>
152

153
   <para>
154 155 156
    <literal>LOCK ... IN ACCESS SHARE MODE</> requires <literal>SELECT</>
    privileges on the target table.  All other forms of <command>LOCK</>
    require <literal>UPDATE</> and/or <literal>DELETE</> privileges.
157
   </para>
158

V
Vadim B. Mikheev 已提交
159
   <para>
160
    <command>LOCK</command> is useful only inside a transaction block
161
    (<command>BEGIN</>/<command>COMMIT</> pair), since the lock is dropped
162 163 164
    as soon as the transaction ends.  A <command>LOCK</> command appearing
    outside any transaction block forms a self-contained transaction, so the
    lock will be dropped as soon as it is obtained.
165
   </para>
166

167
  <para>
168 169 170 171 172 173 174 175
   <command>LOCK TABLE</> only deals with table-level locks, and so
   the mode names involving <literal>ROW</> are all misnomers.  These
   mode names should generally be read as indicating the intention of
   the user to acquire row-level locks within the locked table.  Also,
   <literal>ROW EXCLUSIVE</> mode is a sharable table lock.  Keep in
   mind that all the lock modes have identical semantics so far as
   <command>LOCK TABLE</> is concerned, differing only in the rules
   about which modes conflict with which.
176
  </para>
177
 </refsect1>
178
  
179 180
 <refsect1>
  <title>Examples</title>
V
Vadim B. Mikheev 已提交
181

182
  <para>
183
   Obtain a <literal>SHARE</> lock on a primary key table when going to perform
184 185
   inserts into a foreign key table:

186
<programlisting>
187 188 189 190 191 192 193 194
BEGIN WORK;
LOCK TABLE films IN SHARE MODE;
SELECT id FROM films 
    WHERE name = 'Star Wars: Episode I - The Phantom Menace';
-- Do ROLLBACK if record was not returned
INSERT INTO films_user_comments VALUES 
    (_id_, 'GREAT! I was waiting for it for so long!');
COMMIT WORK;
195
</programlisting>
196
  </para>
V
Vadim B. Mikheev 已提交
197 198

  <para>
199
   Take a <literal>SHARE ROW EXCLUSIVE</> lock on a primary key table when going to perform
200 201
   a delete operation:

202
<programlisting>
203 204 205 206 207 208
BEGIN WORK;
LOCK TABLE films IN SHARE ROW EXCLUSIVE MODE;
DELETE FROM films_user_comments WHERE id IN
    (SELECT id FROM films WHERE rating < 5);
DELETE FROM films WHERE rating < 5;
COMMIT WORK;
209
</programlisting>
V
Vadim B. Mikheev 已提交
210
  </para>
211
 </refsect1>
212

213 214
 <refsect1>
  <title>Compatibility</title>
215
	  
216 217 218 219 220 221 222
  <para>
   There is no <command>LOCK TABLE</command> in the SQL standard,
   which instead uses <command>SET TRANSACTION</command> to specify
   concurrency levels on transactions.  PostgreSQL supports that too;
   see <xref linkend="SQL-SET-TRANSACTION"
   endterm="SQL-SET-TRANSACTION-TITLE"> for details.
  </para>
223

224 225 226 227 228 229 230
  <para>
   Except for <literal>ACCESS SHARE</>, <literal>ACCESS EXCLUSIVE</>,
   and <literal>SHARE UPDATE EXCLUSIVE</> lock modes, the
   <productname>PostgreSQL</productname> lock modes and the
   <command>LOCK TABLE</command> syntax are compatible with those
   present in <productname>Oracle</productname>.
  </para>
231
 </refsect1>
232
</refentry>
233 234 235 236 237 238 239 240 241 242 243 244 245

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:nil
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"../reference.ced"
sgml-exposed-tags:nil
246
sgml-local-catalogs:"/usr/lib/sgml/catalog"
247 248 249
sgml-local-ecat-files:nil
End:
-->