From 24afbbc5c02f5f57789e4ffdca86be5aa389daff Mon Sep 17 00:00:00 2001 From: Yacine31 Date: Tue, 14 Nov 2023 13:22:19 +0100 Subject: [PATCH] Update 23_archive_log_per_day.sql --- sql/23_archive_log_per_day.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/23_archive_log_per_day.sql b/sql/23_archive_log_per_day.sql index f3973d9..71aa4cb 100644 --- a/sql/23_archive_log_per_day.sql +++ b/sql/23_archive_log_per_day.sql @@ -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') ;