Tagged Questions
Isolation level defines what data a transaction can view or access while other transaction works with the same data.
25
votes
6answers
18k views
Why use a READ UNCOMMITTED isolation level?
In plain English what are the disadvanges and advantages of using SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED in query for .NET applications and reporting services application?
20
votes
1answer
10k views
How to detect READ_COMMITTED_SNAPSHOT is enabled?
In MS SQL Server is there a way to detect whether a database has had its isolation level set via the T-SQL command ALTER DATABASE <database> SET READ_COMMITTED_SNAPSHOT ON;
I cannot find a ...
7
votes
4answers
114 views
Minimum transaction isolation level to avoid “Lost Updates”
With SQL Server's transaction isolation levels, you can avoid certain unwanted concurrency issues, like dirty reads and so forth.
The one I'm interested in right now is lost updates - the fact two ...
7
votes
2answers
479 views
InnoDB SELECT … FOR UPDATE statement locking all rows in a table
MySQL Server version 5.1.41 with InnoDB plugin enabled. I have the following three tables for invoices: invoices, invoice_components and invoice_expenses. Table invoices has invoice_id primary key. ...
7
votes
3answers
6k views
How long should SET READ_COMMITTED_SNAPSHOT ON take?
How long should it take to run
ALTER Database [mysite] SET READ_COMMITTED_SNAPSHOT ON
I just ran it and its takin 10 minutes.
How can I check if it is applied?
6
votes
2answers
3k views
SELECT Statement - NOLOCK with SET TRANSACTION ISOLATION LEVEL READ COMMITTED
My understanding is that when NOLOCK is used in SELECT statement, it could read uncommitted / dirty rows as well. But I wanted to take advantage of NOLOCK hint on table so that my SELECT query will ...
6
votes
1answer
4k views
Read committed Snapshot VS Snapshot Isolation Level
Could some one please help me understand when to use SNAPSHOT isolation level over READ COMMITTED SNAPSHOT in SQL Server?
I understand that in most cases READ COMMITTED SNAPSHOT works, but not sure ...
6
votes
3answers
3k views
Why is READ_COMMITTED_SNAPSHOT not on by default?
Simple question?
Why is READ_COMMITTED_SNAPSHOT not on by default?
I'm guessing either backwards compatibility, performance, or both?
[Edit] Note that I'm interested in the effect relating to the ...
5
votes
1answer
192 views
Sql client transactions from code vs database-controlled transactions
I've always done transactions from within stored procedures but now I need to wrap a bunch of "dynamic" statements executed from code against sp_executesql in a transaction.
Specifically I need the ...
5
votes
2answers
887 views
Why better isolation level means better performance in SQL Server
When measuring performance on my query I came up with a dependency between isolation level and elapsed time that was surprising to me
READUNCOMMITTED - 409024
READCOMMITTED - 368021
REPEATABLEREAD - ...
5
votes
2answers
1k views
Using IsolationLevel.Snapshot but DB is still locking
I'm part of a team building an ADO.NET based web-site. We sometimes have several developers and an automated testing tool working simultaneously a development copy of the database.
We use snapshot ...
5
votes
2answers
3k views
How programaticaly enable READ COMMITTED SNAPSHOT in SQL Server?
I need to programaticaly enable READ COMMITED SNAPSHOT in SQL Server. How can I do that?
4
votes
1answer
868 views
What is default isolation level hibernate uses if not explicitely set?
I have an application that uses hibernate version 3.6.4, and c3p0 version 0.9.1.2 for connection pooling. My underlying RDBMS is MySql version 5.0.67.
My installation of MySql indicates that the ...
4
votes
4answers
557 views
set isolation level for postgresql stored procedures
Hopefully a simple question, but one for which I haven't readily found a decent answer. I'm reliably informed that stored procedures (user-defined DB functions) in PostgreSQL (specifically, version ...
4
votes
3answers
339 views
How to produce phantom reads?
Using "repeatable read" it should be possible to produce a phantom read, but how? I need it for an example teaching CS-students.
I think that I must make a "SELECT ... WHERE x<=888" on a ...
4
votes
1answer
432 views
Concurrency strategy configuration for JBoss TreeCache as 2nd level Hibernate cache
I am using JBoss EAP 4.3.
I'm currently looking into the different options for concurrency strategy when using the built-in JBoss TreeCache as a second level cache for Hibernate. I have set it up ...
4
votes
3answers
275 views
Which isolation level to use to prevent data from being read?
I have situation like this.
Query is like this.
Select * from TABLE where ID = 1
(what a query :)
after that I change stuff in that row and INSERT it with new id.
I want to prevent other ...
4
votes
2answers
648 views
Understanding locking behavior in SQL Server
I tried to reproduce the situation of question [1].
On table, taken and filled with data from wiki's "Isolation (database systems)" [2],
in SQL Server 2008 R2 SSMS, I executed:
1) first in first ...
4
votes
8answers
475 views
Oracle transaction isolation
I have a method SaveApp() which will deactivate the existing records and insert a new one.
void SaveApp(int appID)
{
begin transaction;
update;
insert;
commit transaction;
}
Let's say ...
4
votes
1answer
787 views
TransactionScope and Connection Pooling
I'm trying to get a handle on whether we have a problem in our application with database connections using incorrect IsolationLevels. Our application is a .Net 3.5 database app using SQL Server 2005. ...
4
votes
1answer
118 views
Do DB locks require transactions?
Is it true that "Every statement (select/insert/delete/update) has an isolation level regardless of transactions"?
I have a scenario in which I have set update of statements inside a transaction ...
4
votes
4answers
1k views
TRANSACTION ISOLATION LEVEL REPEATABLE READ in SQL Server
What are the risks or performance degradation when using SET TRANSACTION ISOLATION LEVEL REPEATABLE READ?
We have some SP that are called from BizTalk services. We are getting deadlock sometimes. If ...
4
votes
4answers
2k views
Using NOLOCK Hint in EF4?
We're evaluating EF4 and my DBA says we must use the NOLOCK hint in all our SELECT statements. So I'm looking into how to make this happen when using EF4.
I've read the different ideas on how to ...
4
votes
2answers
825 views
Repeatable Read - am I understanding this right?
Trying to completely understand SQL Server Isolation Levels - notably REPEATABLE READ.
I have a sproc that starts a transaction and puts a cursor around some data (boo hiss). This can be a fair ...
4
votes
1answer
4k views
Default SQL Server IsolationLevel Changes
we have a customer that's been experiencing some blocking issues with our database application. We asked them to run a Blocked Process Report trace and the trace they gave us shows blocking occurring ...
4
votes
4answers
649 views
Advice for minimizing locking on an append only table in MS SQL Server?
I'm writing some logging/auditing code that will be running in production (not just when errors are thrown or while developing). After reading Coding Horror's experiences with dead-locking and ...
3
votes
6answers
60 views
Two threads reading from the same table:how do i make both thread not to read the same set of data from the TASKS table
I have a tasks thread running in two separate instances of tomcat.
The Task threads concurrently reads (using select) TASKS table on certain where condition and then does some processing.
Issue is ...
3
votes
4answers
144 views
Why deadlock occurs?
I use a small transaction which consists of two simple queries: select and update:
SELECT * FROM XYZ WHERE ABC = DEF
and
UPDATE XYZ SET ABC = 123
WHERE ABC = DEF
It is quite often situation when ...
3
votes
1answer
1k views
setting isolation level in spring annotation-based transactions
I use in my project annotation-based transaction management (I annotate some methods with @Transactional). I would like to set the isolation level globally (not by putting it as an argument to each ...
3
votes
2answers
86 views
Isolation level required for reliable de/increments on a single field
Imagine we have a table as follows,
+----+---------+--------+
| id | Name | Bunnies|
+----+---------+--------+
| 1 | England | 1000 |
| 2 | Russia | 1000 |
+----+---------+--------+
And ...
3
votes
1answer
946 views
Difference between read commit and repeatable read
I think the above isolation levels are so alike. Could someone please describe with some nice examples what the main difference is ?
3
votes
2answers
675 views
How do I set the transaction isolation level in SQLAlchemy for PostgreSQL?
We're using SQLAlchemy declarative base and I have a method that I want isolate the transaction level for. To explain, there are two processes concurrently writing to the database and I must have them ...
3
votes
3answers
1k views
READ COMMITTED database isolation level in oracle
I'm working on a web app connected to oracle. We have a table in oracle with a column "activated". Only one row can have this column set to 1 at any one time. To enforce this, we have been using ...
2
votes
1answer
57 views
Can the application change the isolation level on each individual transaction on the WebSphere and DB2 combination
I have a an appliction running on the WebSphere application server (7.0.0.19), using DB2 database (9.5). I have the impression that the application server or the database ignores the isolation level ...
2
votes
1answer
44 views
SQL Server 2008 stored proc running concurrently causing delays
I have a problem where it seems that when running the same stored procedure at the same time from two different instances of the same application it is timing out, and wondered if there was anything I ...
2
votes
1answer
113 views
Setting a transaction isolation level in Squeryl
How can I set a transaction isolation level using Squeryl?
For instance, right now I am using Postgresql and need serializable isolation for specific single transactions. I use both plain Squeryl and ...
2
votes
1answer
64 views
Which isolation level to use in a basic MySQL project?
Well, I got an assignment [mini-project] in which one of the most important issues is the database consistency.
The project is a web application, which allows multiple users to access and work with ...
2
votes
1answer
88 views
Some clarifications on different Isolation level in database transaction?
Below is the statement written from Wikipedia's Isolation article about REPEATABLE READS
In this isolation level, a lock-based concurrency control DBMS implementation keeps read and write locks ...
2
votes
1answer
65 views
SQL: at REPEATABLE READ isolation level, are UPDATE locks held to the end of the transaction?
I have read about how REPEATABLE READ causes locks held by SELECT statements to be held to the end of the transaction. Is the same true for exclusive locks taken by UPDATE statements? ...
2
votes
1answer
65 views
Practical uses of Seralization Isolation level?
Under what scenarios we use SERIALIZABLE Isolation level? I have seen some answers on website that says, when you want transaction to be completely isolated, we usually go for this.
What i would ...
2
votes
3answers
434 views
Mysql with innodb and serializable transaction does not (always) lock rows
I have a transaction with a SELECT and possible INSERT. For concurrency reasons, I added FOR UPDATE to the SELECT. To prevent phantom rows, I'm using the SERIALIZABLE transaction isolation level. This ...
2
votes
2answers
609 views
How do I unset/reset a transaction isolation level for SQL Server?
Maybe I'm misunderstand something about transactions or what SQL Server is doing but consider the following T-SQL:
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;
GO
BEGIN TRANSACTION
-- DO SOME ...
2
votes
3answers
522 views
How to set isolation level on SqlCommand/SqlConnection initialized with no transaction
The following method is supposed to peroform a dirty read on an open connection. There are no transactions. Where do I set IsolationLevel?
public string DoDirtyRead(string storedProcName, ...
2
votes
1answer
242 views
transaction isolation level good explanation
Does someone knows a good book where transaction isolation levels are explained with examples and advices in what case what isolation level to use ?
Regards
2
votes
2answers
186 views
What type of Transaction IsolationLevel should be used to ignore inserts but lock the selected row?
I have a process that starts a transaction, inserts a record into Table1, and then calls a long running web service (up to 30 seconds). If the web service call fails then the insert is rolled back ...
2
votes
2answers
142 views
INSERT and transaction serialization in PostreSQL
I have a question. Transaction isolation level is set to serializable. When the one user opens a transaction and INSERTs or UPDATEs data in "table1" and then another user opens a transaction and tries ...
2
votes
3answers
2k views
JPA and MySQL transaction isolation level
I have a native query that does a batch insert into a MySQL database:
String sql = "insert into t1 (a, b) select x, y from t2 where x = 'foo'";
EntityTransaction tx = ...
2
votes
4answers
924 views
Oracle transaction read-consistency?
I have a problem understanding read consistency in database (Oracle).
Suppose I am manager of a bank . A customer has got a lock (which I don't know) and is doing some updating. Now after he has ...
2
votes
3answers
878 views
Django transaction isolation level in mysql & postgresql
Do you know the default isolation level of the transactions used in Django?
Is it possible to set the isolation level in the database independent way?
I'm mainly interested in mysql and postgres.
2
votes
3answers
323 views
Updating Uncommitted data to a cell with in an UPDATE statement
I want to convert a table storing in Name-Value pair data to relational form in SQL Server 2008.
Source table
Strings
ID Type String
100 1 John
100 2 Milton
101 1 Johny
101 2 Gaddar
Target ...