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
What is a singleton class? Give a practical example of its usage.
What is float in java?
What is meant by singleton class?
Write a java program that prints all the values given at command-line.
What exactly is methodology?
Explain aggregation in java?
Can we execute a program without main() method?
what are Hostile Applets?
What are the methods to rectify ambiguities in the interfaces in JAVA?
If a variable is declared as private, where may the variable be accessed?
What are the important features of Java 8 release?
What’s the difference between constructors and other methods?
How do you achieve singleton?
How to write custom exception in java?
If we don’t want some of the fields not to serialize how to do that?