IBM Maximo: SQL Queries - tabela LOGINTRACK

From Wiki
Revision as of 14:37, 28 March 2022 by Ebasso (talk | contribs) (Ebasso moveu IBM Maximo: SQL Queries - Manutenção da tabela LOGINTRACK para IBM Maximo: SQL Queries - tabela LOGINTRACK sem deixar um redirecionamento)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SQL Queries

Logins nos últimos 2 dias

select * from logintracking
where attemptresult='LOGIN'
and attemptdate > sysdate - 2


Listar os Logins por hora

select extract(hour from (cast(attemptdate as timestamp))) login_hour, count(*) num_login
from logintracking 
where attemptresult='LOGIN'
and attemptdate > sysdate - 10
group by extract(hour from (cast(attemptdate as timestamp)))
order by extract(hour from (cast(attemptdate as timestamp)))

Arquivamento da tabela LOGINTRACK

Queries uteis para arquivamento/exclusao de registros em tabelas

select to_char(attemptdate, 'YYYY') as YEAR1, count(1) as CONT
from logintracking 
group by to_char(attemptdate, 'YYYY')
order by to_char(attemptdate, 'YYYY')
2019	296.852
2020	205.320
2021	221.299

Ver também