formatage SQL

This commit is contained in:
Yacine31
2024-02-10 02:30:28 +01:00
parent 2d51059e6c
commit a4bc29b998
35 changed files with 538 additions and 401 deletions

View File

@@ -1,10 +1,11 @@
prompt <h2>Dictionary Stats / Fixed Objects Stats</h2>
SELECT
to_char(max(end_time),'dd/mm/yyyy hh24:mi') latest, operation
TO_CHAR(MAX(END_TIME), 'dd/mm/yyyy hh24:mi') LATEST,
OPERATION
FROM
dba_optstat_operations
DBA_OPTSTAT_OPERATIONS
WHERE
operation in ('gather_dictionary_stats', 'gather_fixed_objects_stats')
OPERATION IN ('gather_dictionary_stats', 'gather_fixed_objects_stats')
GROUP BY
operation;
OPERATION;