how to check the logfiles?
Printable View
how to check the logfiles?
check them for what?
Do you mean REDO logs?
If you want to check the size of your REDO log files, run the following query:
select group#, members, sum(bytes)/1024/1024 "MB"
from v$log
group by group#, members;
Hope it help.