Prepare
Practice
Interview
Aptitude
Reasoning
English
GD
Placement papers
HR
Current affairs
Engineering
MCA
MBA
Online test
Login
Online Practice Test
>
SQL Server 3
« Previous
Next »
Which of the following prevent "Dirty Reads"?
Options
- Read commited
- Read Uncommitted
- Repeatable Read
- Serializable
- a,c,d
CORRECT ANSWER : a,c,d
Discussion Board
Dirty reads
Dirty reads occur when a transaction reads data that has been written by another transaction that has not yet been committed. Dirty reads are only possible at the Read Uncommitted isolation level; however, the Serializable isolation level is sufficient to prevent dirty reads. At the Oracle default level of Read Committed, dirty reads are not possible.
Prajakta Pandit 03-9-2017 12:26 AM
Dirty read
Dirty reads occur when a transaction reads data that has been written by another transaction that has not yet been committed. Dirty reads are only possible at the Read Uncommitted isolation level; however, the Serializable isolation level is sufficient to prevent dirty reads. At the Oracle default level of Read Committed, dirty reads are not possible.
Prajakta Pandit 03-9-2017 12:26 AM
Dirty Read
A dirty read occurs when the first transaction reads uncommitted changes made by a second transaction. If the second transaction is rolled back, the data read by the first transaction becomes invalid because the rollback undoes the changes.
Dirty Read 05-12-2015 12:24 AM
Wrong answer
The answer given is wrong, infact Read Committed , Repeatable Read and Serializable will prevent dirty read. Dirty read occurs when you put (nolock) in your query.
Anu 05-11-2015 04:46 PM
« Previous
Next »
Write your comments
*
*
Email must be in the form someone@domain.com
*
*
Enter the code shown above:
Please enter the code shown above
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)
Related Content
SQL Server (40)
SQL Server (28)
SQL Server (25)
Data Warehousing (10)
Biztalk (15)
SQL Server DBA (15)
Database (30)
Database (28)
DBMS (20)
Advertisement
▲