InterviewSolution
Saved Bookmarks
| 1. |
What is a "dirty read"? |
|
Answer» In typical database transactions, say one transaction reads and changes the value while the second transaction reads the value before committing or rolling back by the first transaction. This reading process is called as 'dirty read'. Because there is always a chance that the first transaction might rollback the change which causes the second transaction reads an invalid value. |
|