What is the default isolation level in SQL Server 2005 and in which scenario would you want to change it ? And little explanation about the default isolation level would be appreciated.
Thanks in anticipation
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Default = READ COMMITTED
You don’t need to change it often. Some folk recommend “always use READ UNCOMMITTED” but this is dangerous.
As to why, I’d suggest Wikipedia but in summary there are 3 data read issues that can occur:
Each of these is removed as you increase isolation (to SERIALIZABLE) at the cost of reduced concurrency.
The default level prevents “Dirty reads” and frankly is good enough.