wht is mean by dirty read?



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

Post New Answer

More Core Java Interview Questions

Can we override a variable in java?

0 Answers  


What are the differences between forwarding () method and sendredirect() methods?

0 Answers  


How to use arraylist in java netbeans?

0 Answers  


class a extends b { } class b extends a { } why java doesn't support cyclic pls explain me with example

3 Answers   Wipro,


How do you reverse a string in java without using string buffer?

0 Answers  






There are three interfaces A,B & C. A extends B, B extends C, and C extends A.Is it multiple Inheritance? please anybody help me.....

5 Answers  


Which method will get invoked first in a stand alone application?

1 Answers  


What is downcasting?

0 Answers  


What is the difference between the paint() and repaint() methods?

0 Answers  


Is integer immutable in java?

0 Answers  


What is the difference between checked exception and unchecked exception?

0 Answers  


How does list work in java?

0 Answers  


Categories