wht is mean by dirty read?
Answer / 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 |
What are multiple inheritances?
What are the different ways of implementing thread? Which one is more advantageous?
This is related to threads. I have a class with synchronized method m1(). Can I create different instances of this class and execute the m1() for different threads?
Which class is the immediate superclass of the Container class?
Can we change the value of static variable?
Explain the init method?
there are some duplicate values in ArrayList, how U'll get that array with out duplicate?
Is it possible to use string in the switch case?
Is there any way to skip finally block of exception even if some exception occurs in the exception block?
What does compareto () do in java?
what is use of session tracking ?with example?
What is the abstract class?