Viewing 15 posts - 16 through 30 (of 44 total)
I forgot to mention in my first post. This is a virtual machine not running on NUMA architecture.
August 4, 2014 at 12:53 pm
Thanks for the verification. Yes, I agree that there is much more that goes into determining what is wrong. Yes, I am sure the wait stat is a daily count....
April 23, 2014 at 8:09 am
ChrisM@Work (3/24/2014)
tfendt (3/24/2014)
ChrisM@Work (3/24/2014)
NTILE(n) splits the data into n equal-sized partitions numbered 1 to n in a...
March 24, 2014 at 11:02 am
ChrisM@Work (3/24/2014)
tfendt (3/24/2014)
ChrisM@Work (3/24/2014)
NTILE(n) splits the data into n equal-sized partitions numbered 1 to n in a...
March 24, 2014 at 8:55 am
ChrisM@Work (3/24/2014)
NTILE(n) splits the data into n equal-sized partitions numbered 1 to n in a user-defined order...
March 24, 2014 at 8:36 am
tfendt (3/24/2014)
ChrisM@home (3/23/2014)
This query works only because of the sequence of RepairId in table2, which already orders most-used tyres ahead of least-used tyres, probably by accident. If table2 really is...
March 24, 2014 at 8:18 am
ChrisM@home (3/23/2014)
This query works only because of the sequence of RepairId in table2, which already orders most-used tyres ahead of least-used tyres, probably by accident. If table2 really is artificially...
March 24, 2014 at 8:09 am
Lynn Pettis (3/21/2014)
March 21, 2014 at 3:44 pm
Thanks for the tip. I will make sure to change it in my query.
March 21, 2014 at 3:13 pm
I also posted this question in StackOverflow. Here is the solution they came up with:
select DealerId, Tire, count(*) as RepairsOfThisTire,
max(cnt) as TotalRepairs,
...
March 21, 2014 at 3:02 pm
The Preagg query is just counting the total number or records per dealer in table 2.
I switched the inner join to a left outer join and got some crazy results....
March 21, 2014 at 11:43 am
It is close to what I wrote in my example.
Your query returns this:
DealerIDTire ...
March 21, 2014 at 10:05 am
Thanks everyone for the input. I will just focus on the short term waits stats and clear out the rest.
March 18, 2013 at 7:04 am
See the picture above. The total wait I am using for disk if at the top under resource waits. I use a program to store all performance and wait statistics....
March 11, 2013 at 11:40 am
Steven.Howes (10/30/2012)
Also what is the error that you get in the Vis Studio output window when you run the report?
There was no error.
October 30, 2012 at 7:31 am
Viewing 15 posts - 16 through 30 (of 44 total)