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 a few examples of final classes defined in Java API?
When a thread is executing a synchronized method , then is it possible for the same thread to access other synchronized methods of an object ?
5 What is Java exception handling?
How to perform quicksort in java?
Which api is provided by java for operations on set of objects?
What are the advantages of java over C++?
How to reduce flicking in animation?
What is navigable map in java?
What will happen if we declare don’t declare the main as static?
What are the types of literals?
What is thread life cycle in java?
what is the swingutilities.invokelater(runnable) method for? : Java thread