[firebird-support] Lock conflict on no wait transaction - finding the user.

2016-12-08 Thread Alexandre Vinhaes - DBA - TIC ticdba...@cipa.com.br [firebird-support]
Hi all, how to query transactions/users in "waiting for lock" ? It would be usefull in time of problems. In other words, I would like to have the related query to execute via isql and identify users waiting another transactions blocking row or range of rows. Thanks. Alexandre.

Re: [firebird-support] lock conflict on no wait transaction - finding the user

2012-02-07 Thread Thomas Steinmaurer
Is there something I can do to find out which user is locking a particular record in a database? If I can use the transaction number to lookup the user, then I may be able to simply ask that user to re-start his machine? The server is running Firebird Superserver 2.1.4 on Windows. I am

Re: [firebird-support] lock conflict on no wait transaction - finding the user

2012-02-07 Thread Thomas Steinmaurer
If your database has an ODS of at least 11.1, then you can do: select a.* , t.* from mon$transactions t join mon$attachments a on (t.mon$attachment_id = a.mon$attachment_id) where mon$transaction_id = 7850179 This will give the transaction and attachment information for this

[firebird-support] lock conflict on no wait transaction - finding the user

2012-02-06 Thread Marius Labuschagne
Hi, Is there something I can do to find out which user is locking a particular record in a database? If I can use the transaction number to lookup the user, then I may be able to simply ask that user to re-start his machine? The server is running Firebird Superserver 2.1.4 on Windows. I am