-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathfda.sql
25 lines (22 loc) · 943 Bytes
/
fda.sql
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
-- -----------------------------------------------------------------------------------
-- File Name : https://oracle-base.com/dba/11g/fda.sql
-- Author : Tim Hall
-- Description : Displays information about flashback data archives.
-- Requirements : Access to the DBA views.
-- Call Syntax : @fda
-- Last Modified: 06-JAN-2015
-- -----------------------------------------------------------------------------------
SET LINESIZE 150
COLUMN owner_name FORMAT A20
COLUMN flashback_archive_name FORMAT A22
COLUMN create_time FORMAT A20
COLUMN last_purge_time FORMAT A20
SELECT owner_name,
flashback_archive_name,
flashback_archive#,
retention_in_days,
TO_CHAR(create_time, 'DD-MON-YYYY HH24:MI:SS') AS create_time,
TO_CHAR(last_purge_time, 'DD-MON-YYYY HH24:MI:SS') AS last_purge_time,
status
FROM dba_flashback_archive
ORDER BY owner_name, flashback_archive_name;