Á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
 012345678910111213141516171819202122232425
Meta16401600156015201480144014001360132012801240120011601120108010401000960920880840800760720680640
Real16401640                        

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 

Empresas

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 

Empresas

Tot
from 
(
select nuSerie, sum(qtd) as totalErros, count(*) as tipoErros
from esanTesteFirebirdErro
where tipoValidacao = 'V'
group by nuSerie
)