Recent questions tagged concurrency

2 votes
1 answer
2
1 votes
2 answers
4
Is only conflict serializable schedules are recoverable?Or both view as well as conflict serializable schedules are recoverable?I have been seeing different answers in di...
0 votes
0 answers
5
1 votes
2 answers
9
Why the value of D is 80 in concurrent process question and not 0? The question didn't mention that each statement take 3 instruction to execute so why assume that?
2 votes
0 answers
10
Is different 2 phase locking a subset of each other? For example, if the schedule is Strict 2PL then it will also be simple 2PL.Something like a 2PL is a subset of Strict...
2 votes
0 answers
13
1 votes
0 answers
14
ANY EXAMPLE OF AN SCHEDULE WHICH IS RECOVERABLE BUT NOT CASCADLESS.?
1 votes
1 answer
15
Is every serializable schedule view serializable?, or like conflict serializable, there could be a serializable schedule which isn’t view serializable?
0 votes
0 answers
16
pls explain why C is correct not A?isn’t every schedule that is supported by 2PL conflict serializable?
0 votes
1 answer
18
T1: R(X), T2: W(X), T2: commit, T1: W(X), T1: commit, T3: R(X), T3: commitis this allowed in Thomas write rule?if yes then what will be the serial order
1 votes
1 answer
19
0 votes
0 answers
20
T1T2R(X) W(X)W(X) abortscommit find conflict serializability,view serializability, recoverable,cascadeless and strict schedule
1 votes
0 answers
21
Are following part of gate syllabus for dbms?1-Validation Based protocols2-multiversion schemes3-snapshot isolation4-predicate reads(concurrency control)5-concurrency in ...
1 votes
1 answer
25
The given schedule:R1 (A) R2 (B) W2 (B) W1(A) W2 (A) Commit2 R1 (C)is revoreable, cascadeless or strict?
1 votes
1 answer
26
We know, Conservative 2PL is another name of Strict 2PL. But According to Navathe bookConservative 2PL is deadlock free,but Strict 2PL can have deadlock.Then how both cou...