DBA Data[Home] [Help]

VIEW: SYS._DBA_STREAMS_NEWLY_SUPTED_10_1

Source

View Text - Preformatted

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

SELECT OWNER
, TABLE_NAME
, REASON
, '10.1'
, 100
FROM "_DBA_STREAMS_UNSUPPORTED_9_2" O
WHERE NOT EXISTS (SELECT 1
FROM "_DBA_STREAMS_UNSUPPORTED_10_1" I
WHERE I.OWNER = O.OWNER
AND I.TABLE_NAME = O.TABLE_NAME)