SQL - Transactions and Data Integrity
A developer writes this SQL snippet to avoid dirty reads:
What is the error in this approach?
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;What is the error in this approach?
