Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
DB Engine
SQL ServerMSDESQL Server CE
Services
Analysis (Data Mining)Analysis (OLAP)DTSIntegration ServicesNotification ServicesReporting Services
Programming
CLRConnectivitySQLXML
Other Technologies
ClusteringEnglish QueryFull-Text SearchReplicationService Broker
General
Data WarehousingPerformanceSecuritySetupSQL Server ToolsOther SQL Server Topics
DirectoryUser Groups
Related Topics
MS AccessOther DB ProductsMS Server Products.NET DevelopmentVB DevelopmentJava DevelopmentMore Topics ...

SQL Server Forum / DB Engine / SQL Server / April 2008

Tip: Looking for answers? Try searching our database.

Database Engine default Isolation Level

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Sintel Silverblade - 30 Apr 2008 20:32 GMT
Is there a way to change the Database Engine Default Isolation level?

The default is: Read committed (Database Engine default level)

I would like to move it to: Read uncommitted (the lowest level where
transactions are isolated only enough to ensure that physically corrupt data
is not read)

I would like to be able to change it on a database level...or a server
level.

Thanks
Gert-Jan Strik - 30 Apr 2008 21:10 GMT
That sounds like a very bad idea to me. Why would you want to do that?

And with Read Uncommitted you can definitely get "logically" corrupt
data, you can get incomplete data, you can get an error (when pages are
moved during the dirty query access). I think you are seriously
underestimating the possible side effects of dirty reads. If you are not
using a read-only database, then I would not recommend it.

If you are on SQL Server 2005, BOL mentions this:

 In SQL Server 2005, you can also minimize locking contention while
protecting transactions
 from dirty reads of uncommitted data modifications using either:
 * The READ COMMITTED isolation level with the READ_COMMITTED_SNAPSHOT
database option set to ON.
 * The SNAPSHOT isolation level.

Maybe you should take a look at that.

Signature

Gert-Jan
SQL Server MVP

> Is there a way to change the Database Engine Default Isolation level?
>
[quoted text clipped - 8 lines]
>
> Thanks
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.