Update redolog_size_per_days.sql

This commit is contained in:
Yacine31
2021-11-25 03:25:48 +01:00
parent 3f414bc1f2
commit 586cdfa17f

View File

@@ -2,8 +2,9 @@ REM
REM Tailes des redoslog par jour
REM
set pages 0
select
to_char(first_time, 'YYYY/MM/dd'),
to_char(first_time, 'YYYY/MM/dd') "Jour",
ROUND(sum(BLOCKS*BLOCK_SIZE)/1024/1024, 0) "Taille_Mo"
from v$archived_log
group by to_char(first_time, 'YYYY/MM/dd')