IBM Maximo: SQL Queries: Difference between revisions
(Criou a página com " * IBM Maximo: Exportando um relatório (BIRT) do banco de dados do Maximo = Ver também = * Artigos sobre IBM Maximo * Tecnologias| Mais Artigos...") |
No edit summary |
||
Line 1: | Line 1: | ||
= Performance = | |||
== Verificando quando as maiores tabelas e atualização de estatísticas == | |||
select table_name, round((num_rows*avg_row_len)/1048576) tbsize, num_rows, last_analyzed | |||
from all_tables | |||
where owner='MAX' | |||
and num_rows>0 | |||
order by last_analyzed | |||
resultado | |||
table_name tbsize num_rows last_analyzed | |||
WORKORDER 65996 95582941 24-SET-21 | |||
WOSTATUS 27442 306121780 24-SET-21 | |||
... | |||
Revision as of 14:20, 24 September 2021
Performance
Verificando quando as maiores tabelas e atualização de estatísticas
select table_name, round((num_rows*avg_row_len)/1048576) tbsize, num_rows, last_analyzed from all_tables where owner='MAX' and num_rows>0 order by last_analyzed
resultado
table_name tbsize num_rows last_analyzed WORKORDER 65996 95582941 24-SET-21 WOSTATUS 27442 306121780 24-SET-21 ...