Answer Posted / g.arun
Dirty read - Changes made during a Transaction is 'visible'
to other parties
Non Repeatable Read -
if Transcation T1 reads a row and Transcation T2 changes
the same row,when T1 rereads and sees the changes made by
T2.Then this is Non - Repeatable Read
Phantom Read - If Transcation T1 retrieves a bunch of
rows.Transcation T2 inserts a row,T1 rereads the query and
if T1 see the additional row,it is a ghost row to T1 then
this is called as Phantom Read
| Is This Answer Correct ? | 10 Yes | 5 No |
Post New Answer View All Answers
Can you create an object of an abstract class?
What is the difference between member variables initialization and assignment in a constructor?
Can we clone singleton object in java?
How many types of assembly languages are there?
What is a variable analysis?
What is an object in java and how is it created?
What is variable in java?
Are variables stored in ram?
what are the states associated in the thread? : Java thread
Explain about public and private access specifiers?
Explain importance of inheritance in java?
What is proper subset?
What is mvc in java?
What is oops in java?
Can an interface extend another interface?