-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathDBA Redo Log Files.sql
More file actions
31 lines (30 loc) · 963 Bytes
/
DBA Redo Log Files.sql
File metadata and controls
31 lines (30 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*************************************************************************/
/* */
/* (c) 2010-2024 Enginatics GmbH */
/* www.enginatics.com */
/* */
/*************************************************************************/
-- Report Name: DBA Redo Log Files
-- Description: None
-- Excel Examle Output: https://www.enginatics.com/example/dba-redo-log-files/
-- Library Link: https://www.enginatics.com/reports/dba-redo-log-files/
-- Run Report: https://demo.enginatics.com/
select
gl.inst_id,
gl.group#,
gl.members,
gl.status,
gl.first_time,
gl.next_time,
glf.member,
glf.type file_type,
glf.is_recovery_dest_file
from
gv$log gl,
gv$logfile glf
where
gl.inst_id=glf.inst_id and
gl.group#=glf.group#
order by
gl.inst_id,
gl.group#