Viewing 15 posts - 1 through 15 (of 27 total)
I think it's well and truly nailed now. For some event types the SELECT where clause looked like this:
WHERE table1.col8 IN (NULL, N'value')
The code was recently fixed to remove...
February 8, 2007 at 3:50 pm
Interesting observation, Colin and thanks for sharing.
When my test started I noted much improved performance. For the first 329mins I was getting really good throughput, comparable with Oracle and...
February 8, 2007 at 7:33 am
updating the column definition for col8 from varchar(255) to nvarchar(255) has resulted in a dramatic difference. I'll leave the test running to see if anything else happens but so...
February 7, 2007 at 11:50 am
the number of entries in the IN clause can be any number, maybe up to 100-200. It's purely driven by how many items are included with the event. ...
February 7, 2007 at 9:07 am
When I run the slow query in SQL Studio I get fairly consistent times. I setup a test to run the same statement 10 times in a row and...
February 6, 2007 at 11:06 am
I captured the execution plan from SQL Profiler and it looks like the INDEX is being used. The duration reported is 176ms which is way longer than anything I've...
February 6, 2007 at 10:01 am
Here's some more information that may be useful.
1. I let my data load run for a couple of days and notes the continued degradation of the SELECT statement. When...
February 6, 2007 at 8:42 am
That select will table scan if the number of records returned exceeds more than about 1% of the table. I can't tell whether the in is a single value (and...
February 6, 2007 at 8:28 am
I have manually checked the execution plans of the queries by running them in the Management Studio and according to the output I get, the SELECT should be using the...
February 5, 2007 at 7:50 am
When I run this query:
I see this:
Full Scans/sec 597397
as I run this the number increases. I have only one database instance in use so I know that all the...
February 2, 2007 at 4:29 pm
I think I've nailed the problem (although I haven't fixed it).
In short, we have SELECTs that are taking longer and longer to run. It's like index isn't being used...
February 2, 2007 at 2:16 pm
I have reverted the index situation back to how it was originally. The things I tried were:
1. PK nonclustered
2. no indexes except for PKs
3. various fillfactor sizes
None of these...
February 2, 2007 at 11:44 am
Thanks, Colin.
Just to re-iterate, even though the test I am using is styled like a data load, it's not really a data load at all. It's just a high...
February 2, 2007 at 8:05 am
Just to correct some earlier statements.
I have been told the server is a dual CPU with hyperthreading technology. Also, when I reported the high CPU for the SQL Server...
February 1, 2007 at 1:03 pm
Viewing 15 posts - 1 through 15 (of 27 total)