Reporting Question
-2017 Average time to resolution
-2017 Tickets that remained open longer than 60 days
-2017 SLA's met vs breached
Going forward I will need to provide this data on a weekly basis as well, but I figure once I find out how to get it for last year, I should be able to adjust date filters and get the data I need. My big problem right now is figuring out how to get to this data now.
(FYI - My SQL skills are quite limited, but I do have a SQL engineer who can help if needed.)
Best Answer
-
Brian_Wiest Customer Super IT Monkey ✭✭✭✭✭This should get you/your SQL engineer started in the Warehouse.select * from SLAInstanceInformationFactvw
Left Join SLAInstanceStatusvw SLAS on SLAInstanceInformationFactvw.SLAInstanceStatusId = SLAS.SLAInstanceStatusId5
Answers
Hi Brian,
Luckily, I only have one management group asking me at the moment, so I can start with one way and steer future groups to look at things the same way.
I hadn't thought about the different ways time would come across, so I need to verify that, but right now let's say they wanted business hours.
I think I am going to need all of the 2017 info from the warehouse as we are only retaining data for 270 days across all work items. I also have the added benefit of only IR's being looked at for SLA's so I'm hoping that simplifies things.
Thank you for your help Brian. I am going to get with my SQL guy and see if we can make this happen.
How would you go about getting the SLA's? We are basically just looking to get if they breached or were met, for example, I need to be able to say we had 100 total IR's this week, 80 were completed within SLA. Additionally I might add a % breach, but that should be easy to calculate once I can find out how many were completed that met their SLA.
Left Join SLAInstanceStatusvw SLAS on SLAInstanceInformationFactvw.SLAInstanceStatusId = SLAS.SLAInstanceStatusId