Hello,
I tried to compare total calls answred by agent for VQ
[Total_Calls_Answered]
Category=TotalNumber
Description=Total number of new calls answered
Formula=DCID
MainMask=CallAnswered
Objects=GroupQueues, Queue, RoutePoint
Subject=DNAction
with this request
select
vq.resource_name,
count(distinct m.INTERACTION_ID) as N_SERVIS
from
mediation_segment_fact m,
resource_ vq,
interaction_resource_fact i
where
m.RESOURCE_KEY = vq.resource_key
and vq.resource_name in (‘NAME OF VQ’)
i.TALK_COUNT <> 0 and
i.INTERACTION_ID = m.INTERACTION_ID and
(to_date(‘1970-01-01’,‘YYYY-MM-DD’) + m.start_date_time_key/24/60/60) > = to_date(‘2017-06-12’,‘YYYY-MM-DD’) and
(to_date(‘1970-01-01’,‘YYYY-MM-DD’) + m.start_date_time_key/24/60/60) < to_date(‘2017-06-13’,‘YYYY-MM-DD’)
group by vq.resource_name
order by 1;
But I always have gap (1 to 5 ) between datamart and infomart.
I tried to discard some calls with (Technical_result = CustomerAbandonned) but there is always gap.
Is someone here already compared data from DataMart and InfoMart ?
in your experien what is % of gap between infomart and datamart ?
thanks for help
best regard