Viewing 12 posts - 1 through 12 (of 12 total)
Can you run your test as the only active user of the server? If so, try running sp_mointor before and after your test.
That could then perhaps point you in the...
October 17, 2006 at 8:28 am
If you have 10,000 entries within the QueryLog table; then could you compare the differences between the StartTime column between one execution and the next to determine the milliseconds between...
October 13, 2006 at 9:11 am
I just realized from looking at your other post, that you're using Analysis Services 2000, which does report only seconds within the duration column.
Rather than have two discussions going for...
October 13, 2006 at 8:57 am
Sorry, my mistake, I wasn't paying close enough attention to your question.
From my understanding of Analysis Services 2005, the Duration column within the Query Log table is in milliseconds.
http://www.microsoft.com/technet/prodtechnol/sql/2005/technologies/config_ssas_querylog.mspx
October 13, 2006 at 8:46 am
If I understand this correctly, when an insert occurs, you want to:
1. Check for the existince of the mananager;
2. If the manager is not already listed as an employee, then...
October 12, 2006 at 3:47 pm
KC,
It appears that you can have multiple DischrgSessID values for one Waste Discharge, but then you do not include this aspect within your grouping.
Are you not wanting to differentiate between...
October 12, 2006 at 3:40 pm
When you created your usage based aggregations, did you use specific criteria (date rage of cube use, specific users, execution frequency, storage mode, or response time, specific queries) ?
Will the...
October 12, 2006 at 8:46 am
Have you tried using this and running the query manually:
set statistics time on
October 12, 2006 at 8:29 am
You're welcome...
One thing that did concern me about your original query is that the I.InvoiceDate is likely a Datetime, and so the @EndDate you're using may not include everything you...
October 12, 2006 at 8:22 am
Have you tried simplifying it like this?
SELECT I.ItemNo, I.ItemDescription AS ItemDesc, SUM(I.QTYPackSizeDescription) ItemMovement
FROM Invoices I, StoreGroupMembers S
WHERE I.StoreKey = S.StoreKey
AND S.StoreGroupID = @StoreGroupID
AND I.InvoiceDate BETWEEN @StartDate AND @EndDate
GROUP BY I.ItemNo,...
October 10, 2006 at 1:38 pm
How many rows are in the table?
How many distinct values are in the table for each of these columns within the index?
How many indexes are on the table and what...
September 15, 2006 at 11:06 am
The in and not in clauses are being turned into join/outer join clauses by the optimizer:
select count(*)
from mainestimatedetails d, mainjobdetails j
where d.id *= j.estimateid
and j.estimateid is null
Unfortunately, for SQL 2000...
September 15, 2006 at 10:32 am
Viewing 12 posts - 1 through 12 (of 12 total)