Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 2008
»
SQL Server 2008 - General
»
Sql server Isolation levels
Sql server Isolation levels
Rate Topic
Display Mode
Topic Options
Author
Message
sql_2005_fan
sql_2005_fan
Posted Thursday, February 07, 2013 5:31 PM
SSC Journeyman
Group: General Forum Members
Last Login: Wednesday, February 13, 2013 7:06 PM
Points: 86,
Visits: 66
HI,
Which is the most preferred isolation level in T-SQL? Does it change from case to case? Say does it differ from a OLAP,OLTP,web application or is it the same? what is the reason?
Thanks.
Post #1417401
anthony.green
anthony.green
Posted Friday, February 08, 2013 3:23 AM
SSCertifiable
Group: General Forum Members
Last Login: Friday, April 12, 2013 3:51 AM
Points: 5,075,
Visits: 4,831
Default is READ COMMITTED, typically only change it if you are having problems, and I always stay away from READ UNCOMMITTED
Want an answer fast? Try here
How to post data/code for the best help - Jeff Moden
Need a string splitter, try this - Jeff Moden
How to post performance problems - Gail Shaw
CrossTabs-Part1
&
Part2 - Jeff Moden
SQL Server Backup, Integrity Check, and Index and Statistics Maintenance - Ola Hallengren
Managing Transaction Logs - Gail Shaw
Troubleshooting SQL Server: A Guide for the Accidental DBA - Jonathan Kehayias and Ted Krueger
Post #1417562
opc.three
opc.three
Posted Wednesday, February 13, 2013 1:30 PM
SSCertifiable
Group: General Forum Members
Last Login: Today @ 8:26 AM
Points: 6,737,
Visits: 11,791
As was stated READ COMMITTED is the default iso level and the default iso level cannot be changed to something else. Once connected anyone can explicitly change the iso level
for their session
using the SET TRANSACTION ISOLATION LEVEL command.
READ_COMMITTED_SNAPSHOT isolation (RCSI) is an alternate behavioral mode of READ COMMITTED that is worth looking into if you're experiencing blocking in a database where both reads and writes occur simultaneously, e.g. in an OLTP system also used for some real-time reporting. I would strongly recommend RCSI over READ UNCOMMITTED in that scenario. There are very few use cases where READ UNCOMMITTED is safe.
It's not really a question of the type of system, e.g. OLTP, OLAP, etc., it's a question of how much concurrency do you want to support versus how much data-integrity protection you need.
__________________________________________________________________________________________________
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
Believe you can and you're halfway there.
--Theodore Roosevelt
Everything Should Be Made as Simple as Possible, But Not Simpler
--Albert Einstein
The significant problems we face cannot be solved at the same level of thinking we were at when we created them.
--Albert Einstein
1 apple is not exactly 1/8 of 8 apples. Because there are no absolutely identical apples.
--Giordy
Post #1419732
« Prev Topic
|
Next Topic »
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.