Tagged Questions
The record-locking tag has no wiki summary.
3
votes
3answers
470 views
Storing Record Lock Tokens in ASP.NET
In the application that I'm currently working on, it is possible for multiple users to want to edit something at the same time which means that we need to implement optimistic locking. However, for ...
2
votes
7answers
167 views
Locking the page in asp.net for a user
I am facing a problem with locking an asp.net page. We have a user profile page in which we need to lock that page for the user who opened it first. The details are as follows, There are many user ...
2
votes
3answers
302 views
How to lock a record when two members are trying to access it?
I have the scenario like this,
My environment is .Net2.0, VS 2008, Web Application
I need to lock a record when two members are trying to access at the same time.
We can do it in two ways,
By ...
2
votes
3answers
517 views
How can I get SQL Server transactions to use record-level locks?
We have an application that was originally written as a desktop app, lo these many years ago. It starts a transaction whenever you open an edit screen, and commits if you click OK, or rolls back if ...
2
votes
4answers
185 views
Why is this query slow? Should I use MyISAM rather than InnoDB here?
I'm getting these about 5 times an hour in my slow query logs:
# Query_time: 11.420629 Lock_time: 0.000033 Rows_sent: 0 Rows_examined: 0
SET timestamp=1267487708;
INSERT INTO record_lock ...
1
vote
2answers
38 views
SQL Server function - prevent duplicates
I have a SQL Server 2005 database. Table A has an identity column in it as well as another manual Id column that spans several rows. The second id column is in the format of '0000000098' and must be a ...
1
vote
3answers
65 views
Lock the maximum value in MySQL
I am using the following query on MySQL using PHP
$sql = SELECT MAX(SrNo) FROM cart;
$result = mysql_query($sql);
The structure of table CART is
CART (SrNo int(10));
Now I am using the result to ...
0
votes
1answer
88 views
Salesforce: Records getting locked by time-dependent workflows
We're currently using Salesforce for our sales process, which involve trying to get people to sign up to our "accounts management system", submit details, documents, and get reviewed by an admin. This ...
0
votes
0answers
93 views
record locking in flex or zend amf
How do you handle record locking in a flex (flash builder 4) application with multiple users?
It is using zend amf to talk to a database (mongodb or mysql).
For example, if user 1 loads a client ...
0
votes
1answer
97 views
Do we need Record Level Locking when we already have Transaction for online ordering? (of concert ticket or airline booking)
For online ordering of concert seats or airline tickets, do we need Record Level Locking or is Transaction good enough?
For concert ticket (say, seat Number 20B), or airline ticket (even with ...