Recent questions tagged transaction-and-concurrency

1 votes
2 answers
61
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...
1 votes
1 answer
62
0 votes
0 answers
63
0 votes
1 answer
65
1 votes
1 answer
66
Given Problem : S1 can be shown allowed under 2PL.However, the solution that they have provided for S2 : Seems wrong, as So, is S2 allowed under 2PL, or the answer give...
1 votes
1 answer
68
given schedule s: R2A W1B W1C R3B R2B R1A C1 R2C C2 W3A C3How should I approach to above problem when LOCKS ARE NOT GIVEN and to find if s is 2PL ?
1 votes
2 answers
69
0 votes
1 answer
71
order of operations T1T2T1T2
1 votes
4 answers
72
every strict recoverable schedule is conflict serializable..if not then why?
1 votes
3 answers
73
Suppose,T1: W(X), T2: R(X), T1: W(X), T2: Commit, T1: AbortHere we can see T2 is getting committed before T1 aborts, so it is clearly an Irrecoverable schedule but is it ...
1 votes
1 answer
74
Find View SerializableT1 : R1(A) , R1(B) , W1(B)T2 : R2(A) , R2(B) , W2(B)
1 votes
1 answer
80
Match the following:$$\begin{array}{|ll|ll|} \hline\text{a.}& \text{Transaction Failure} & \text{i.}&\text{Transaction Manager}\\\hline\text{b.}& \text{Concurrency Contro...
0 votes
1 answer
87
Global lockssynchronize access to local resources.synchronize access to global resources.are used to avoid local locks.prevent access to global resources.
20 votes
5 answers
90
Consider a schedule of transactions $T_1$ and $T_2$:$\begin{array}{|c|c|c|c|c|c|c|c|c|c|c|} \hline T_1 & RA & & & RC & & WD & & WB & \text{Commit} & \\ \hline T_2 & & R...