2026-03-12 20:23:15
This commit is contained in:
23
timhall/11g/fda_tables.sql
Normal file
23
timhall/11g/fda_tables.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/11g/fda_tables.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays information about flashback data archives.
|
||||
-- Requirements : Access to the DBA views.
|
||||
-- Call Syntax : @fda_tables
|
||||
-- Last Modified: 06-JAN-2015
|
||||
-- -----------------------------------------------------------------------------------
|
||||
|
||||
SET LINESIZE 150
|
||||
|
||||
COLUMN owner_name FORMAT A20
|
||||
COLUMN table_name FORMAT A20
|
||||
COLUMN flashback_archive_name FORMAT A22
|
||||
COLUMN archive_table_name FORMAT A20
|
||||
|
||||
SELECT owner_name,
|
||||
table_name,
|
||||
flashback_archive_name,
|
||||
archive_table_name,
|
||||
status
|
||||
FROM dba_flashback_archive_tables
|
||||
ORDER BY owner_name, table_name;
|
||||
Reference in New Issue
Block a user