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

What is meant by bytecode?

0 Answers  


What is the specification of ?CODEBASE? in an applet?

1 Answers  


What is the difference between constructor and method?

4 Answers  


How to create a custom exception?

0 Answers  


Discuss different types of errors that generally occur while programming.

0 Answers   Amdocs,






abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


What do you mean by thread safe?

0 Answers  


how we can make a write-only class in java?

0 Answers  


What does jre stand for?

0 Answers  


How do you test a method for an exception using junit?

0 Answers  


why an outer class cannot be declared as private?

1 Answers  


How can u create the Object of class Without using "New" opertor?

3 Answers   IBM, TCS,


Categories