Viewing 6 posts - 1 through 6 (of 6 total)
The READ_COMMITTED_SNAPSHOT option can only be set if you are the only connection to the database. So when you see that command running for a long time, it is waiting...
March 14, 2006 at 8:16 am
We've seen only one problem, but it's pretty serious. We have gotten "Internal SQL Server Error" on some queries of the form:
INSERT INTO TableName (C1, C2) SELECT C1, C2 FROM...
January 1, 2006 at 6:25 pm
We've seen this happen on a few customer databases over the past couple years, mostly when running on Windows 2000. All the problems I have seen were fixed by service...
November 18, 2005 at 9:22 am
This article has a split function that takes an ntext parameter. It also compares a few different ways of tackling the problem.
May 22, 2004 at 3:59 pm
You can use the WITH (NOEXPAND) hint to force the query to use the index.
For example:
SELECT * FROM dbo.MyIndexedView WITH (NOEXPAND)
This would also allow you to use the indexed view...
March 18, 2004 at 8:27 am
Here's a great article on MSDN about using MSDE 2000 in a web application. It describes how to get around the connection limit by setting the Max Pool Size for ADO.NET:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmsde2kwrk/html/msde2000webapp.asp
March 16, 2004 at 8:18 am
Viewing 6 posts - 1 through 6 (of 6 total)