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 |
Is java still relevant?
how to minimize the functionality to will not force garbage collector?
What do you know about the garbage collector in java?
Define how does a try statement determine which catch clause should be used to handle an exception?
How to solve the problem of generating the unique hash keys with hash function?
Can a constructor call the constructor of parent class?
Why to give the file name same as the public class name in java?
What is parse method?
If set accepts only one argument then how can it compare two objects to avoid duplicates
what is the difference between Cpp And Java
What is a Java switch statement, and how can it be used?
What is meant by JVM ?