DBA Data[Home] [Help]

VIEW: SYS._DBA_STREAMS_NEWLY_SUPTED_10_2

Source

View Text - Preformatted

select owner, table_name, reason, '10.2', 102
    from "_DBA_STREAMS_UNSUPPORTED_10_1" o
    where not exists
      (select 1 from "_DBA_STREAMS_UNSUPPORTED_10_2" i
         where i.owner = o.owner
           and i.table_name = o.table_name)
View Text - HTML Formatted

SELECT OWNER
, TABLE_NAME
, REASON
, '10.2'
, 102
FROM "_DBA_STREAMS_UNSUPPORTED_10_1" O
WHERE NOT EXISTS (SELECT 1
FROM "_DBA_STREAMS_UNSUPPORTED_10_2" I
WHERE I.OWNER = O.OWNER
AND I.TABLE_NAME = O.TABLE_NAME)