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 is sorting algorithm in java?
What is the set interface in java programming?
Why is java so popular?
Why non nested classes in java are not having marked as protected access specifier
Explain wait(), notify() and notifyall() methods of object class ?
What is a static method in java?
What class allows you to read objects directly from a stream in java programming?
Advantages of Inheritance in java.
Is string pool garbage collected?
How many bytes are there?
What is difference between ++ I and I ++ in java?
What is meant by structural programming?