Oracle Database: How To Find Location Of Online Redolog Files
Using SQL Interface: There are 2 main dynamic performance views to see your database’s current redo log structure. 1. v$logfile => Shows redo log groups, group members and member status. 1 sql> select group#,status,member from v$logfile; GROUP# STATUS MEMBER 1 /oradata/mydb/redo_log_files/redo01.log 2 /oradata/mydb/redo_log_files/redo02.log 3 /oradata/mydb/redo_log_files/redo03.log Here, this database has 3 redo log groups with 3 members. You can see the path of redo log files and see which group they belong to. If status is null then it means that the file is in use. 2. v$log => This view provides information about your redo log groups. This information is […]
Read more