Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
115 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
4answers
3k views

NOLOCK vs. Transaction Isolation Level

What's the difference between using "SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED" and NOLOCK? Is one better than the other?
6
votes
4answers
213 views

Does MySQL/InnoDB implement true serializable isolation?

It is not entirely clear from MySQL documentation whether the InnoDB engine implements true serializable isolation1 or snapshot isolation, which is often confusingly called "serializable" too. Which ...
4
votes
1answer
870 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
1answer
171 views

Strange behaviour from MYSQL 5 (Database Isolation)

I opened two command windows to work with my Database (MySQL5). Below is table structure I'm working with (It should be noted that I've turned off the auto commit by executing set autocommit=0;): ...
4
votes
7answers
794 views

Commiting only Specific Changes made inside a TRANSACTION which may ROLLBACK

This is a significant edit from the original question, making it more concise and covering the points raised by existing answers... Is it possible to have mulitple changes made to multiple tables, ...
3
votes
6answers
61 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
1answer
611 views

Set default isolation level for Microsoft.Practices.EnterpriseLibrary

I've got a .net 3.5 website that calls thousands of different stored procs using Microsoft.Practices.EnterpriseLibrary. We have been getting alot of timeouts and after some playing and testing the ...
3
votes
4answers
483 views

How should I go about implementing an “autonumber” field in SQL Server 2005?

I'm aware of IDENTITY fields but I have a feeling that I couldn't use one to solve my problem. Let's say I have multiple clients. Each client has multiple orders. Each client needs to have their ...
2
votes
2answers
59 views

What are the conditions for encountering a serialization failure?

The PostgreSQL manual page on the Serializable Isolation Level states: [Like] the Repeatable Read level, applications using this level must be prepared to retry transactions due to serialization ...
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
3answers
102 views

How to handle in an effective way duplicate key insertions w/out throwing an exception

My case scenario passes parameter to a procedure, that only does an insert. But two threads might try to pass the same value. How to handle this situation w/out throwing an exception and with least ...
2
votes
2answers
318 views

Best way to retry a transaction with Seam & Hibernate

I've got a Seam web application working with Seam & Hibernate (JDBC to SQLServer). It's working well, but under heavy load (stress test with JMeter), I have some LockAcquisitionException or ...
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
1answer
54 views

SQL Server Insert query for a forum

Considering a forum table and many users simultaneously inserting messages into it, how safe is this transaction? SET TRANSACTION ISOLATION LEVEL SERIALIZABLE BEGIN TRANSACTION DECLARE ...
2
votes
1answer
374 views

Nhibernate : generates insert then update statements, in multithreaded environment leads to deadlock issues

I've experienced the following scenario when using NHibernate with SQL Server 2005. I have a business process which involves the following steps: Start transaction Create nhibernate mapped object ...
2
votes
1answer
591 views

Is it okay if from within one stored procedure I call another one that sets a lower transaction isolation level?

I have a bunch of utility procedures that just check for some conditions in the database and return a flag result. These procedures are run with READ UNCOMMITTED isolation level, equivalent to WITH ...
1
vote
3answers
267 views

how to lock a DB table or a range of rows for writing?

I have a simple table with a primary key. Most of the read operations fetch one row by the exact value of the key. The data in each row maintains some relationship with rows before and after it in ...
1
vote
1answer
883 views

Crystal Reports with SQL Server 2005: Setting Transaction Isolation Level

Is there a way to specify the transaction isolation level when Crystal Reports queries a SQL Server 2005 database without resorting to any of the following: Encapsulating the report's query in a ...
1
vote
3answers
1k views

How is a T-SQL transaction not thread-safe?

The following (sanitized) code sometimes produces these errors: Cannot drop the table 'database.dbo.Table', because it does not exist or you do not have permission. There is already an object ...
0
votes
0answers
37 views

Can lazy loaded relationships be configured to use FOR UPDATE?

With SQLAlchemy Is there a way to set up a lazy loaded relationship so that when the query is eventually executed it uses FOR UPDATE? For a query I know I can use .with_lockmode("update"), but I ...
0
votes
0answers
36 views

SQL Server Isolation levels - Multiple Reads - Missing Rows

Under which isolation levels is it possible to read a row multiple times or miss a row from the query dataset? I'm sure that READ UNCOMMITTED can lead to multiple reads and misses due to page splits. ...
0
votes
0answers
65 views

SQLException lock could not be obtained - while using Derby Database

Following is my method to get some values from Derby database, I often get a lock exception. There is no isolation level set and it is enough that the data we get can be an uncommitted data. So ...
0
votes
1answer
88 views

Is Database Connection same as Session?

I'm bit confused about relationship between a Database Open Session Connection pooling To elaborate, I'm using JDBC with Oracle 9i DB and I'm also using a Connection Pool to pool my connections. ...
0
votes
0answers
104 views

Mysql and parallel transactions

Our application inserts a row into a mysql innodb table every time a user makes a search operation in our application. Lets call it search_log. Yesterday, I had to run a simple data fix which updated ...
0
votes
1answer
809 views

Problem with SQL transaction isolation level

i have a problem with transaction isolation levels. There are two tables involved, first one is updated frequently with transaction isolation level set to SERIALIZABLE, the second one has a foreign ...
0
votes
2answers
386 views

How do I use a transaction when reading data with Entity Framework 4?

I'm trying to utilize the SNAPSHOT transaction isolation level in Microsoft SQL Server 2008 R2 with the Entity Framework 4.0. However, this doesn't seem to be as easy as I first thought. To use ...
0
votes
2answers
162 views

Locking in PHP to acheive a crtitical section - unexpected results with MySQL

The goal is to have a PHP script with a certain section of the code that can only be executed by one thread/process at a time. Some restrictions: semaphores not available on my system The manual ...
0
votes
1answer
361 views

Transaction isolation level on an oledb-connection

I have an oledb-connection from clickview to a sql2005-server and I would like this connection to use transaction isolation level of read uncommitted. My seconde choice would be to set it on the ...