Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
178 views

Snapshot transaction Isolation levels: it really works as advertised?

Have you any problems using it on high concurrency environment? It's really works as advertised by MS? I'm using SQL Server 2005 and would like to hear the experiences of those who are/was using it on ...
2
votes
1answer
91 views

SQL Server 2005 becomes blocked with no locked or locking processes

We have a database (let's call it database A) which becomes unusable every some days and we have to restart it. When I say unusable means all applications using it just block there waiting for the ...
2
votes
2answers
2k views

How to implement Snapshot Isolation correctly and tempdb issues?

The Snapshot Isolation feature helps us to solve the problem where readers lock out writers on high volume sites. It does so by versioning rows using tempdb in SqlServer. My question is to correctly ...
1
vote
2answers
20 views

Implementing ranged queries with B+trees and snapshot isolation

I'm developing a new NoSQL database server product. Are there any papers on how to implement range queries on clustered B+ trees that uses snapshot isolation?
1
vote
2answers
366 views

SQL Server - inconsistent behavior when reading uncommitted changes of the same transaction

Working with SQL server with isolation level "read committed snapshot", we routinely write data to the database and read it further on in the context of the same transaction. Usually when reading from ...
0
votes
1answer
51 views

Unable to create a SnapShot in IOS

Any ideas why this would be happening? Corrupt directory perhaps? I did a lot of copying back and forth with these files.
0
votes
2answers
75 views

With TSQL SNAPSHOT ISOLATION, is it possible to update only non-locked rows?

A large SQL Server 2008 table is normally being updated in (relatively) small chunks using a SNAPSHOT ISOLATION transaction. Snapshot works very well for those updates since the chunks never overlap. ...
0
votes
0answers
107 views

Hardware based “snapshot” functionality, like on VMWare

The way we are currently working when developing out software involves developing inside a vmware virtual machine running visual studio on windows xp. This is mainly due to the fact that our software ...