-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard_v11.sql
More file actions
559 lines (492 loc) · 18.5 KB
/
dashboard_v11.sql
File metadata and controls
559 lines (492 loc) · 18.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
use DB_PRD_INFINITY;
declare @d_menos_1_texto_formato_brasil varchar(10)
, @d_menos_1_texto_formato_americano varchar(10)
, @id_indicador int
select @d_menos_1_texto_formato_brasil = convert(varchar, cast(getdate() - 1 as date), 103) -- 06/07/2019
, @d_menos_1_texto_formato_americano = cast(getdate() - 1 as date) -- 2019-07-06
, @id_indicador = (select isnull(max(id), 0) from dashboard)
select @id_indicador
/***************************************************************** relatório 1, 'Tudo que está na recording_tagging está na recording_production?' ********************************************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Tudo que está na recording_tagging está na recording_production?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
-- o que sai de tagging está chegando em production?
select count(*) as qtde
from recording_tagging t with (nolock)
where t.id not in (
select p.ID
from recording_production p with (nolock)
)
and extension in (
select Ramal from ramais_inb_fixa_sjc with (nolock) union all
select Ramal from ramais_inb_mov_sbc with (nolock) union all
select Ramal from ramais_inb_mov_sjc with (nolock)
)
and cast(local_end_time as date) = cast(getdate() - 1 as date)
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
select *
from recording_tagging t with (nolock)
where t.id not in (
select p.ID
from recording_production p with (nolock)
)
and extension in (
select Ramal from ramais_inb_fixa_sjc with (nolock) union all
select Ramal from ramais_inb_mov_sbc with (nolock) union all
select Ramal from ramais_inb_mov_sjc with (nolock)
)
and cast(local_end_time as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
'
where id = @id_indicador
/************************************** relatório 2, 'Toda lista de ramais (OP00001) está na tabela client_customer_inboundmovel?' ****************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Toda lista de ramais (OP00001) está na tabela client_customer_inboundmovel?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
SELECT count(distinct data02) as qtde
FROM client_customer_inboundmovel a with (nolock)
where data02 not in (
select Ramal from ramais_inb_mov_sbc with (nolock) union all
select Ramal from ramais_inb_mov_sjc with (nolock)
)
and cast(datetime as date) = cast(getdate() - 1 as date)
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
SELECT distinct data02
FROM client_customer_inboundmovel a with (nolock)
where data02 not in (
select Ramal from ramais_inb_mov_sbc with (nolock) union all
select Ramal from ramais_inb_mov_sjc with (nolock)
)
and cast(datetime as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
'
where id = @id_indicador
/************************************** relatório 3, 'Toda lista de ramais (OP00004) está na tabela client_customer_inboundfixa?' ****************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Toda lista de ramais (OP00004) está na tabela client_customer_inboundfixa?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
SELECT count(distinct data02) as qtde
FROM client_customer_inboundfixa a with (nolock)
where data02 not in (
select Ramal from ramais_inb_fixa_sjc with (nolock)
)
and cast(datetime as date) = cast(getdate() - 1 as date)
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
SELECT distinct data02
FROM client_customer_inboundfixa a with (nolock)
where data02 not in (
select Ramal from ramais_inb_fixa_sjc with (nolock)
)
and cast(datetime as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
'
where id = @id_indicador
/************************************** relatório 4, 'Toda lista de ramais (OP00001) está na tabela recording_tagging?' ****************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Toda lista de ramais (OP00001) está na tabela recording_tagging?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
SELECT count(distinct ramal) as qtde
FROM (
SELECT ramal FROM ramais_inb_mov_sbc with (nolock) union all
SELECT ramal FROM ramais_inb_mov_sjc with (nolock)
) r
where ramal NOT IN (
SELECT extension
FROM recording_tagging t with (nolock)
)
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
SELECT distinct ramal
FROM (
SELECT ramal FROM ramais_inb_mov_sbc with (nolock) union all
SELECT ramal FROM ramais_inb_mov_sjc with (nolock)
) r
where ramal NOT IN (
SELECT extension
FROM recording_tagging t with (nolock)
)
'
where id = @id_indicador
/************************************** relatório 5, 'Toda lista de ramais (OP00004) está na tabela recording_tagging?' ****************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Toda lista de ramais (OP00004) está na tabela recording_tagging?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
SELECT count(distinct ramal) as qtde
FROM ramais_inb_fixa_sjc r with (nolock)
where ramal NOT IN (
SELECT extension
FROM recording_tagging t with (nolock)
)
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
SELECT distinct ramal
FROM ramais_inb_fixa_sjc r with (nolock)
where ramal NOT IN (
SELECT extension
FROM recording_tagging t with (nolock)
)
'
where id = @id_indicador
/************************************** relatório 6, 'Tudo que está na client_customer_inboundmovel (OP00001) está na client_customerhistory?' ****************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Tudo que está na client_customer_inboundmovel (OP00001) está na client_customerhistory?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
select isnull(sum(subtotal), 0)
from (
select qtde - (
select count(*)
from client_customerhistory with (nolock)
where data04 = 'OP00001'
and convert(varchar, datetime, 103) = t.data
) as subtotal
from (
select convert(varchar, datetime, 103) as data
, count(*) as qtde -- OP00001
from client_customer_inboundmovel with (nolock)
where data04 = 'OP00001'
and cast(datetime as date) = cast(getdate() - 1 as date)
group by convert(varchar, datetime, 103)
) as t
where t.data not in (
select convert(varchar, datetime, 103)
from client_customerhistory with (nolock)
where data04 = 'OP00001'
and cast(datetime as date) = cast(getdate() - 1 as date)
)
or t.qtde <> (
select count(*)
from client_customerhistory with (nolock)
where data04 = 'OP00001'
and convert(varchar, datetime, 103) = t.data
group by convert(varchar, datetime, 103)
)
) as u
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
select data as data_inboundmovel
, qtde as qtde_inboundmovel
, (
select count(*)
from client_customerhistory with (nolock)
where data04 = ''OP00001''
and convert(varchar, datetime, 103) = t.data
) as qtde_customerhistory
from (
select convert(varchar, datetime, 103) as data
, count(*) as qtde -- OP00001
from client_customer_inboundmovel with (nolock)
where data04 = ''OP00001''
and cast(datetime as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
group by convert(varchar, datetime, 103)
-- order by convert(varchar, datetime, 103)
) as t
where t.data not in (
select convert(varchar, datetime, 103)
from client_customerhistory with (nolock)
where data04 = ''OP00001''
and cast(datetime as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
)
or t.qtde <> (
select count(*)
from client_customerhistory with (nolock)
where data04 = ''OP00001''
and convert(varchar, datetime, 103) = t.data
group by convert(varchar, datetime, 103)
)
'
where id = @id_indicador
/************************************** relatório 7, 'Tudo que está na client_customer_inboundfixa (OP00004) está na client_customerhistory?' ****************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Tudo que está na client_customer_inboundfixa (OP00004) está na client_customerhistory?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
select isnull(sum(subtotal), 0)
from (
select qtde - (
select count(*)
from client_customerhistory with (nolock)
where data04 = 'OP00004'
and convert(varchar, datetime, 103) = t.data
) as subtotal
from (
select convert(varchar, datetime, 103) as data
, count(*) as qtde
from client_customer_inboundfixa with (nolock)
where data04 = 'OP00004'
and cast(datetime as date) = cast(getdate() - 1 as date)
group by convert(varchar, datetime, 103)
) as t
where t.data not in (
select convert(varchar, datetime, 103)
from client_customerhistory with (nolock)
where data04 = 'OP00004'
and cast(datetime as date) = cast(getdate() - 1 as date)
)
or t.qtde <> (
select count(*)
from client_customerhistory with (nolock)
where data04 = 'OP00004'
and convert(varchar, datetime, 103) = t.data
group by convert(varchar, datetime, 103)
)
) as u
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
select data as data_inboundfixa
, qtde as qtde_inboundfixa
, (
select count(*)
from client_customerhistory with (nolock)
where data04 = ''OP00004''
and convert(varchar, datetime, 103) = t.data
) as qtde_customerhistory
from (
select convert(varchar, datetime, 103) as data
, count(*) as qtde
from client_customer_inboundfixa with (nolock)
where data04 = ''OP00004''
and cast(datetime as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
group by convert(varchar, datetime, 103)
) as t
where t.data not in (
select convert(varchar, datetime, 103)
from client_customerhistory with (nolock)
where data04 = ''OP00004''
and cast(datetime as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
)
or t.qtde <> (
select count(*)
from client_customerhistory with (nolock)
where data04 = ''OP00004''
and convert(varchar, datetime, 103) = t.data
group by convert(varchar, datetime, 103)
)
'
where id = @id_indicador
/************************************** relatório 8, 'Todo o Matching (OP00001 e OP00004) foi inserido na tabela recording_matching?' ****************************************/
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - Todo o Matching (OP00001 e OP00004) foi inserido na tabela recording_matching?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
SELECT count(ID) as qtde
FROM recording_production p with (nolock)
where tag_id is not null
and ID not in (
SELECT IDRecording
FROM recording_matching
where cast(datetime as date) = cast(getdate() - 1 as date)
)
and cast(local_end_time as date) = cast(getdate() - 1 as date)
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = '
SELECT ID
FROM recording_production p with (nolock)
where tag_id is not null
and ID not in (
SELECT IDRecording
FROM recording_matching
where cast(datetime as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
)
and cast(local_end_time as date) = cast(''' + @d_menos_1_texto_formato_americano + ''' as date)
'
where id = @id_indicador
/************************************** relatório 9 - A quantidade de interações na CH (OP00001) está na média com relação a RT? ****************************************/
begin try
drop table #tabela
end try
begin catch
end catch
create table #tabela (
data varchar(10)
, qtde_CH int default(0)
, qtde_RT int default(0)
, CH_representa_em_RT decimal (5,2) default(0)
)
insert into #tabela (data, qtde_CH)
select left(data11, 10)
, count(*) as qtde
FROM client_customerhistory a with (nolock)
where data02 in (
select Ramal from ramais_inb_mov_sbc with (nolock) union all
select Ramal from ramais_inb_mov_sjc with (nolock)
)
and cast(datetime as date) = cast(getdate() - 1 as date)
group by left(data11, 10)
order by left(data11, 10)
insert into #tabela (data, qtde_RT)
select data, qtde
from (
select convert(varchar, local_end_time, 23) as data
, count(*) as qtde
from recording_tagging t with (nolock)
where extension in (
select Ramal from ramais_inb_mov_sbc with (nolock) union all
select Ramal from ramais_inb_mov_sjc with (nolock)
)
and cast(local_end_time as date) = cast(getdate() - 1 as date)
group by convert(varchar, local_end_time, 23)
) as t
where t.data not in (
select u.data
from #tabela u
)
update #tabela
set qtde_RT = (
select count(*) as qtde
from recording_tagging t with (nolock)
where extension in (
select Ramal from ramais_inb_mov_sbc with (nolock) union all
select Ramal from ramais_inb_mov_sjc with (nolock)
)
and convert(varchar, local_end_time, 23) = data
)
where qtde_RT = 0
update #tabela
set CH_representa_em_RT = round(cast(qtde_CH as real) / cast(qtde_RT as real) * 100, 2)
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - A quantidade de interações na CH (OP00001) está na média com relação a RT?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
select count(*)
from #tabela t
where CH_representa_em_RT < 50
or CH_representa_em_RT > 80
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = (
select COALESCE(
(SELECT registro + iif(id=(select count(*) from #tabela where CH_representa_em_RT < 50 or CH_representa_em_RT > 80),'', ' union ') AS [text()]
FROM (
select 'select ''' + data + ''' as data, '
+ cast(qtde_CH as varchar) + ' as qtde_CH, '
+ cast(qtde_RT as varchar) + ' as qtde_RT, '
+ cast(CH_representa_em_RT as varchar) + ' as CH_representa_em_RT' as registro
, id
from (
select top 100 percent *
, row_number() over (order by data) as id
from #tabela t
where CH_representa_em_RT < 50
or CH_representa_em_RT > 80
order by data
) as t
) as u
FOR XML PATH(''), TYPE).value('.[1]', 'VARCHAR(MAX)'), '') AS retorno
)
where id = @id_indicador
/************************************** relatório 10 - A quantidade de interações na CH (OP00004) está na média com relação a RT? ****************************************/
delete from #tabela
insert into #tabela (data, qtde_CH)
select left(data11, 10)
, count(*) as qtde
FROM client_customerhistory a with (nolock)
where data02 in (
select Ramal from ramais_inb_fixa_sjc with (nolock)
)
and cast(datetime as date) = cast(getdate() - 1 as date)
group by left(data11, 10)
order by left(data11, 10)
insert into #tabela (data, qtde_RT)
select data, qtde
from (
select convert(varchar, local_end_time, 23) as data
, count(*) as qtde
from recording_tagging t with (nolock)
where extension in (
select Ramal from ramais_inb_fixa_sjc with (nolock)
)
and cast(local_end_time as date) = cast(getdate() - 1 as date)
group by convert(varchar, local_end_time, 23)
) as t
where t.data not in (
select u.data
from #tabela u
)
update #tabela
set qtde_RT = (
select count(*) as qtde
from recording_tagging t with (nolock)
where extension in (
select Ramal from ramais_inb_fixa_sjc with (nolock)
)
and convert(varchar, local_end_time, 23) = data
)
where qtde_RT = 0
update #tabela
set CH_representa_em_RT = round(cast(qtde_CH as real) / cast(qtde_RT as real) * 100, 2)
set @id_indicador = @id_indicador + 1
insert into dashboard (id, relatorio)
values (@id_indicador, @d_menos_1_texto_formato_brasil + ' - A quantidade de interações na CH (OP00004) está na média com relação a RT?')
update dashboard with (ROWLOCK)
set qtdeFaltante = (
select count(*)
from #tabela t
where CH_representa_em_RT < 50
or CH_representa_em_RT > 80
)
where id = @id_indicador
update dashboard with (ROWLOCK)
set resposta = iif(qtdeFaltante > 0, 'Não', 'Sim')
, queryQueRetornaOsProblemas = (
select COALESCE(
(SELECT registro + iif(id=(select count(*) from #tabela where CH_representa_em_RT < 50 or CH_representa_em_RT > 80),'', ' union ') AS [text()]
FROM (
select 'select ''' + data + ''' as data, '
+ cast(qtde_CH as varchar) + ' as qtde_CH, '
+ cast(qtde_RT as varchar) + ' as qtde_RT, '
+ cast(CH_representa_em_RT as varchar) + ' as CH_representa_em_RT' as registro
, id
from (
select top 100 percent *
, row_number() over (order by data) as id
from #tabela t
where CH_representa_em_RT < 50
or CH_representa_em_RT > 80
order by data
) as t
) as u
FOR XML PATH(''), TYPE).value('.[1]', 'VARCHAR(MAX)'), '') AS retorno
)
where id = @id_indicador
select * from dashboard d