From: | Michael Fuhr <mike(at)fuhr(dot)org> |
---|---|
To: | Ben <newreaders(at)gmail(dot)com> |
Cc: | PostgreSQL <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Which (table) lock mode to use |
Date: | 2004-12-15 03:36:08 |
Message-ID: | 20041215033608.GA28825@winnie.fuhr.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Wed, Dec 15, 2004 at 11:55:34AM +1100, Ben wrote:
> I have this scenario and would like to use lock table for this but I
> don't know which mode I should use.
>
> When I delete/update/insert a record from/to a table, I need to update
> some fields of all the records in this table.
What's the purpose of the updates? If we knew more about what
you're trying to do then maybe we could suggest alternate solutions.
> During this process I don't want anyone to insert, update or delete
> the data but allow them to select the data at the original state.
>
> I am currently using:
>
> LOCK TABLE tbl_name IN SHARE ROW EXCLUSIVE MODE
>
> Is this the correct mode to use?
The "Explicit Locking" section of the "Concurrency Control" chapter
in the documentation describes the available lock modes and their
conflicts. SELECT acquires ACCESS SHARE; UPDATE, DELETE, and INSERT
acquire ROW EXCLUSIVE, so it sounds like you want a lock that
conflicts with ROW EXCLUSIVE but not with ACCESS SHARE. That gives
the following possibilities:
SHARE
SHARE ROW EXCLUSIVE
EXCLUSIVE
See the documentation for these modes' conflicts and decide which
is most appropriate. But again, what problem are you trying to
solve? Maybe there's a better way than locking an entire table.
--
Michael Fuhr
http://www.fuhr.org/~mfuhr/
From | Date | Subject | |
---|---|---|---|
Next Message | Neil Conway | 2004-12-15 04:46:16 | Re: VACUUM FULL [ANALYZE] problem |
Previous Message | Aaron | 2004-12-15 03:23:39 | Unable to read data from the transport connection. |