Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Finding the size of Archived log files
member27732_at_dbforums.com said...
>
> I would like to know how much memory the archived redo log files are
> used in my physical disk folder .
>
> Thanks in advance
>
> --
> Posted via http://dbforums.com
>
You didn't specify your O/S, but...
Unix -
ls -la *.arc | awk '{total += $5}; END {print total}'
or to get it in MB:
ls -la *.arc | awk '{total += $5}; END {print total/1024/1024 " MB"}'
WinNT/2000 -
![]() |
![]() |