DBA Data[Home] [Help]

VIEW: SYS.AUDTAB$TBS$FOR_EXPORT

Source

View Text - Preformatted

select owner, table_name, tablespace_name from dba_tables
where owner = 'SYS' and (table_name = 'AUD$' or table_name = 'FGA_LOG$')
View Text - HTML Formatted

SELECT OWNER
, TABLE_NAME
, TABLESPACE_NAME
FROM DBA_TABLES WHERE OWNER = 'SYS'
AND (TABLE_NAME = 'AUD$' OR TABLE_NAME = 'FGA_LOG$')