database-locking Questions

1

Solved

What I am trying to establish is whether there is any direct relation between Isolation Levels and Locks. So, let's say I started a transaction with a Serializable isolation level then will Oracle ...
Nicholle asked 10/10, 2022 at 6:34

4

Solved

I am reading a manual about innodb transactions but still, there is lots of unclear stuff to me. For instance, I don't quite understand to the following behaviour: -- client 1 -- client 2 mysql&gt...
Extravasation asked 19/2, 2012 at 22:44

1

Solved

TL;DR: we have long-running imports which seem to hold locks on the parent partitioned table even though nothing is directly referencing the parent table. Background In our system, we have inventor...

1

I've ran into a need to figure this out on 9.6, but information on anything 9.6 or later would be appreciated. I'm having an issue with my application being blocked on a database call because it's...
Unbar asked 17/6, 2020 at 14:33

5

Solved

How can I guarantee that I can search if a username exists in my database, then insert that username into the database as a new row without any intercept between the SELECT and INSERT statements? ...
Parch asked 12/6, 2013 at 14:55

1

Solved

I am trying to develop a booking system, that books different assets after checking its availability. The system first tries to read records from the DB and checks if the slot being booked is avail...
Gassman asked 17/8, 2018 at 21:51

2

Solved

I have a Django app saving objects to the database and a celery task that periodically does some processing on some of those objects. The problem is that the user can delete an object after it has ...
Tourbillion asked 15/5, 2016 at 5:44

2

Solved

I am doing a project in wicket How to solve the problem. I came across such a message: WicketMessage: Can't instantiate page using constructor public itucs.blg361.g03.HomePage() Root cause: java....
Frick asked 19/12, 2011 at 9:56

1

I tried to find on google but no success. Can anybody explain at what level elastic search take locks to handle multiple threaded or multi process environment? Whether it is at index or doctype o...

4

Solved

When i try to insert/update something in a db table, will Oracle lock the whole table or only the row being inserted/updated? Is this something that can be controlled through external configuratio...
Puerility asked 2/8, 2013 at 16:4

3

What is the difference between an explicit and an implicit lock in database?
Ives asked 8/9, 2010 at 19:55

1

Solved

I've thoroughly read MSDN about table hints and I don't seem to find the locking granularity default. Suppose I have the following query: SELECT TOP (1) * FROM MyTable WITH (UPDLOCK, READPAST) ORD...
Marcellmarcella asked 18/12, 2012 at 13:51

3

In SQL Server 2008 I have a view V over tables A and B that looks roughly like create view V as select * from A union all select * from B Reading from V causes a query to take intent shared l...
Motor asked 23/4, 2012 at 17:29
1

© 2022 - 2024 — McMap. All rights reserved.