Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...My thanks to the contributors who freely share their knowledge and enthusiasms. This forum restores some measure of my faith in human nature..."

Geography

Where in the world do Tek-Tips members come from?
RobNorthcott (Programmer)
26 Apr 10 13:01
I'm a bit of an SQL server noob, so forgive me if this is a silly question, but I can't find the answer anywhere...

When my app comes up against a lock and has to wait, I've always displayed a "locked by user xxx" message, so it's easy for the user to shout or run over to the offending workstation and sort it out.

However, I can't work out how to do this with Postgres.  I can detect the lock OK by trapping the error when trying to "SELECT .... FOR UPDATE NOWAIT", but can't work out how to identify the offending user.  I'm sure it should be possible by looking at the system tables (pg_locks etc), but can't work out exactly how to decipher all the links.

Is this a weird thing to want to do?  I'm surprised I can't find anything.

Any pointers much appreciated :)

Rob
RobNorthcott (Programmer)
13 May 10 6:25
Looks like this forum is dead, but just in case anybody comes across this thread...

We actually managed to work something out that does what we're after.

Using the pgrowlocks() function, then cross-referencing those results with pg_stat_activity by pid = procpid allows us to get the user name and IP address.

For example, if you are tring to lock a record for "BOB" in table "customers" with key field "cust_key",

CODE

select usename, client_addr from customers, pg_stat_activity, pgrowlocks('customers')
where cust_key = "BOB" and locked_row = ctid and procpid = pids[1]
will give the user name and IP address of the user having the lock on that record.

Rob

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close