Viewing 15 posts - 16 through 30 (of 52 total)
SQLGuru - I couldn't agree with you more - this is the first time I have ever had responsibility for a system that I can't touch - something like trying...
June 12, 2007 at 3:25 pm
SQLGuru,
The CPU usage is typically hovering around 13-18%....we do see spikes during our heavy load periods up to 50% but very rarely higher.....on Sat, the CPU is running at 1-2%...
June 12, 2007 at 1:21 pm
Ganesh,
About 4 weeks ago, we started to experience the same type of slowdown - after rebooting the server, a complex test query takes 90 seconds......over the next 7 days, the...
June 12, 2007 at 11:44 am
Here's a simple SP to refresh all views - if anyone is interested, I have another to do the recompiles........
CREATE PROCEDURE dbo.p_RefreshAllViews
as
BEGIN
SET NOCOUNT ON
DECLARE @viewName sysname
DECLARE...
April 27, 2007 at 10:06 am
We also elected to go with one database per client - we use SQL Compare to ensure that the schemas remain in sync across clients.
Using one database per client adds some admininstrative...
April 18, 2007 at 12:00 pm
Sergiv,
Thanks for the suggestion - but I'm afriad that I'm on to other projects. Adding the clustered index on SalesDate wont help me though - since there are several dates...
March 28, 2007 at 5:52 pm
Antares,
Without sales date, the query runs quite a long time and retunrs thousands of rows.....there are no indexes selected and full clustred index scans are done of all tables.......
Thanks for...
March 28, 2007 at 12:25 pm
Antares,
I declared the variable and moved the date calc out of the select as requested. The change had no impact on the query path selected - table scans are performed. ...
March 28, 2007 at 11:39 am
Antares,
Thanks for the thought - I agree that is can be useful - it was run on Sat as part of the normal maintenance and then again yesterday before the...
March 28, 2007 at 10:27 am
Thanks for everyone's input --
Sergiv - I'm afraid the result won't matter - there are serveral indexed date fields on the table and I need to be able to run similar views...
March 28, 2007 at 10:14 am
Jeff,
Displaying the estimated query plan using the convert shows 4150 rows - doing the same with a hardcoded date shows 1 row - the actual number of rows for today...
March 27, 2007 at 5:12 pm
The clustered index is on SalesID which is a sequential ID that is the primary means of accessing the records......there are several other indexes on various fields including SalesDate, InsertDate,...
March 26, 2007 at 5:43 pm
Antares,
The system has been around for many years - and the decision re the data type was apparently made at inception - the data is imported from another system in...
March 26, 2007 at 4:59 pm
I just started using Performance Analysis by Quest 3 or 4 weeks ago - it provides a great deal of information on specific queries users are running. I've been able...
March 6, 2007 at 12:24 pm
Viewing 15 posts - 16 through 30 (of 52 total)