Tagged Questions
37
votes
4answers
23k views
Optimistic vs. Pessimistic locking
I understand the differences between optimistic and pessimistic locking*. Now could someone explain to me when I would use either one in general?
And does the answer to this question change ...
4
votes
3answers
2k views
“SELECT … FOR UPDATE” not working for Hibernate and MySQL
We have a system in which we must use pessimistic locking in one entity. We are using hibernate, so we use LockMode.UPGRADE. However, it does not lock.
The tables are InnoDB
We have checked that ...
4
votes
3answers
3k views
Pessimistic lock in T-SQL
If i SELECT a row for updating in MS SQL Server, and want to have it locked till i either update or cancel, which option is better :-
1) Use a query hint like UPDLOCK
2) Use REPEATABLE READ ...
1
vote
3answers
609 views
when is a pessimistic lock released in rails?
Assuming I'm doing something like this (from the Active Record Querying guide)
Item.transaction do
i = Item.first(:lock => true)
i.name = 'Jones'
i.save
end
Is the lock ...
1
vote
1answer
672 views
How to release a locked row using JPA?
I'm using the EclipseLink implementation of the JPA 2.0 which allows pessimistic locking. I know how to lock an entity but how do I release the lock? At first I thought this was all taken care of ...
1
vote
1answer
802 views
whats the difference between PESSIMISTIC_READ and PESSIMISTIC_WRITE?
I have read the article Locking and Concurrency in Java Persistence 2.0, and run the sample application. But i still cant realize the difference between PESSIMISTIC_READ and PESSIMISTIC_WRITE. I tried ...
0
votes
0answers
9 views
ISAM Pessimistic locking
I am working on moving our ISAM database to another ISAM database. The application uses pessimistic locking, in that the record is locked for writing when the user starts editing a field and is ...
0
votes
0answers
74 views
JPA Pessimistic locks released on commit?
I'm trying to debug a concurrency issue in an application using JBoss 6.0.0-Final, with the Hibernate JPA persistence layer over an SQL Server 2005 data source. I think there must be something ...
0
votes
1answer
76 views
table per client in database
We developing service were for each client user can make appointment.
Is there strategy - table in database (MS SQL SERVER) for each client will be proper?
We think such strategy simplifies and ...