cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1877
Views
0
Helpful
2
Replies

Counting the total number of calls offered to the ICM per day

NICNGUYEN
Level 1
Level 1

Hi Team,

Does anyone know if there is a table providing the total number of calls offered to the ICM per day ?

I looked at the Database Schema Guide and I couldn't such an information.

Eventually is there an SQL request that anyone knows which could provide this information ?

Thanks & Regards

Nick

1 Accepted Solution

Accepted Solutions

Your best and easiest route is to look at a calltype report for your inbound numbers and just add them all up.

david

View solution in original post

2 Replies 2

Your best and easiest route is to look at a calltype report for your inbound numbers and just add them all up.

david

Hi David,

Thank you for your help. Here is the SQL query I made to query all the CallsOffered to the ICM

USE xxx_hds

GO

SELECT cast(floor(cast(DateTime as  float)) as datetime) date_appel,   sum(CallsOffered) CallsOffered

FROM t_Call_Type_Interval

WHERE cast(floor(cast(DateTime  as float)) as datetime)  = '2012-06-29 00:00:00.000'

GROUP BY  cast(floor(cast(DateTime as float)) as datetime)

ORDER BY  1

Regards

Nick

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: