Update 23_archive_log_per_day.sql

This commit is contained in:
Yacine31
2023-11-14 13:22:19 +01:00
parent 52fa23dfff
commit 24afbbc5c0

View File

@@ -69,7 +69,7 @@ select
count(*) "Nbr de fichiers",
ROUND(sum(BLOCKS*BLOCK_SIZE)/1024/1024, 0) "Taille_Mo"
from v$archived_log
where rownum<=30
where rownum<=10
group by to_char(first_time, 'YYYY/MM/dd')
order by to_char(first_time, 'YYYY/MM/dd')
;