Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
17answers
41k views

SELECT FOR UPDATE with SQL Server

I'm using a Microsoft SQL Server 2005 database with isolation level READ_COMMITTED and READ_COMMITTED_SNAPSHOT=ON. Now I want to use: SELECT * FROM <tablename> FOR UPDATE ...so that other ...
20
votes
1answer
11k 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
3answers
7k 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
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
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
120 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 ...
2
votes
1answer
337 views

Read Committed Isolation level in SQL server for a single statement

Say, I have a person table and it has only 1 row - id = 1, name = 'foo' On one connection select p1.id, p1.name, p2.name from person p1 join person p2 on p1.id = p2.id On another connection ...
2
votes
2answers
542 views

Is READ UNCOMMITTED / NOLOCK safe in this situation?

I know that snapshot isolation would fix this problem, but I'm wondering if NOLOCK is safe in this specific case so that I can avoid the overhead. I have a table that looks something like this: drop ...
2
votes
3answers
299 views

Tuning SQL Server 2008 for web applications

In one of the Stackoverflow podcasts, I remember Jeff Atwood saying that there was a configuration option in SQL Server 2008 which cuts down on locking, and was kind of an alternative to using "with ...
1
vote
1answer
183 views

Application safe to use READ_COMMITTED_SNAPSHOT?

I have a large web application using a COM data access layer against an SQL Server 2005 database. By default, the isolation level is READ_COMMITTED. Now I understand how READ_COMMITTED_SNAPSHOT ...
1
vote
3answers
1k views

How to figure the read/write ratio in Sql Server?

How can I query the read/write ratio in Sql Server 2005? Are there any caveats I should be aware of? Perhaps it can be found in a DMV query, a standard report, a custom report (i.e the Performance ...
1
vote
1answer
462 views

READ_COMMITTED_SNAPSHOT on SQL Server 2005 in 2000 Compatability Mode?

While investigating a problem I believed to be related to lock escalation and thinking that READ_COMMITTED_SNAPSHOT would be the solution, I checked whether it was already enabled. To my surprise, ...
0
votes
1answer
231 views

SQL Azure and READ_COMMITTED_SNAPSHOT

I would like to set READ_COMMITTED_SNAPSHOT to ON on my SQL Azure database, but the following code, which works with other versions of SQL Server, is not supported in Azure: ALTER DATABASE ...
0
votes
1answer
430 views

msdtc and isolation level

I need some clarification how MS-DTC will behave in scenario given below 1) I have more than one connection in within a transactionscope (Isolation level - ReadCommited),which will bring MS- DTC ...