SQL Server Notification Services Question:

What is Isolation Levels?

Tweet Share WhatsApp

Answer:

Isolation keeps the transactions of multiple users isolated from each other. Transaction isolation level controls the degree of locking which occurs when selecting data. This is necessary to avoid situations like:

► Lost updates- when two transactions read the same data.
► Dirty read- Occurs when a transaction reads data that has not been updated.
► Non repeatable reads- occur when different results are read multiple times.
► Phantoms- Occurs when row data matches the first time but does not match subsequent times.

Download SQL Notification Services PDF Read All 15 SQL Notification Services Questions
Previous QuestionNext Question
Define transaction and transaction isolation levels?Define data, entity, domain and referential integrity?