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 |
Tell me the Importent classes in net package?
Explain the selection sort algorithm?
Can you achieve runtime polymorphism by data members?
Why do people says “java is robust”?
What is double data type?
What are the default and parameterized constructors?
Can bool be null?
how to call a method in different package?
What are the two types of java?
How many bytes is a unicode character?
What is the differnence between String Buffer and String builder despite having knowledge that String builder is faster than String Buffer and last one is threadsafe.please tell another important difference.
What is difference between printf and scanf?