Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
HTML
<center><font size="5000"> MELHORAR A QUALIDADE DOS DADOS EM 70% </font></center>

 

 

Gráfico
bgColorBlack
orientationvertical
height600
width1200
showShapesfalse
typeline
 012345
Meta90725436180
Real90806352  

SQL
dataSourceBANCAO
stylebackground-color:black;color:yellow; font-weight:bold;font-size:2.5em;
rowOrientationhorizontal
width600
retainRowStyleOrderfalse
select 'ANTES' AS Tipo, 
sum(totalErros) as Reg,
sum(tipoErros) as Itens,
count(*) as Tot
from 
(
select nuSerie, sum(qtd) as totalErros, count(*) as tipoErros
from esanTesteAuditorErroInicio
where tipoValidacao = 'V'
group by nuSerie
)
union
select 'DEPOIS' as Tipo, 
sum(totalErros) as Reg,
sum(tipoErros) as Itens,
count(*) as Tot
from 
(
select nuSerie, sum(qtd) as totalErros, count(*) as tipoErros
from esanTesteFirebirdErro
where tipoValidacao = 'V'
group by nuSerie
)