Finding count and list of incidents reassigned from one tier-queue to a different tier-queue

Hi Team,

I have a requirement to find count and list of incidents which were reassigned from one tier-queue to a different tier-queue.

Any help would be appreciated.

Thanks  

August 20th, 2015 10:53am

You can find that data in the Data Warehouse: dbo.IncidentTierQueueDurationFactvw.
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2015 11:49am

You can find that data in the Data Warehouse: dbo.IncidentTierQueueDurationFactvw.
August 20th, 2015 3:47pm

You can find that data in the Data Warehouse: dbo.IncidentTierQueueDurationFactvw.
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2015 3:47pm

You can find that data in the Data Warehouse: dbo.IncidentTierQueueDurationFactvw.
August 20th, 2015 3:47pm

You can find that data in the Data Warehouse: dbo.IncidentTierQueueDurationFactvw.
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2015 3:47pm

Hi Foothill,

thanks for your time to look into this... however the view dbo.IncidentTierQueueDurationFactvw does not have any reference to the Incident numbers :(

August 24th, 2015 3:02am

That table has a link back to dbo.IncidentDim which stores all incidents.

SELECT * FROM dbo.IncidentDim AS IR
JOIN dbo.IncidentTierQueueDurationFactvw AS IR_DUR
ON IR.IncidentDimKey = IR_DUR.IncidentDimKey

Just filter down to what particular incident you are looking for.

Free Windows Admin Tool Kit Click here and download it now
August 24th, 2015 9:59am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics