DBA Data[Home] [Help]

SYS.DBMS_FEATURE_XSTREAM_STREAMS dependencies on DBA_CAPTURE

Line 25: from dba_capture where UPPER(purpose) = 'XSTREAM STREAMS';

21: feature_usage := NULL;
22: total_feature_usage := 0;
23:
24: select decode (count(*), 0, 0, 1) into num_capture
25: from dba_capture where UPPER(purpose) = 'XSTREAM STREAMS';
26:
27: select decode (count(*), 0, 0, 1) into num_ds_capture
28: from dba_capture where UPPER(purpose) = 'XSTREAM STREAMS' and
29: UPPER(capture_type) = 'DOWNSTREAM';

Line 28: from dba_capture where UPPER(purpose) = 'XSTREAM STREAMS' and

24: select decode (count(*), 0, 0, 1) into num_capture
25: from dba_capture where UPPER(purpose) = 'XSTREAM STREAMS';
26:
27: select decode (count(*), 0, 0, 1) into num_ds_capture
28: from dba_capture where UPPER(purpose) = 'XSTREAM STREAMS' and
29: UPPER(capture_type) = 'DOWNSTREAM';
30:
31: select decode (count(*), 0, 0, 1) into num_apply
32: from dba_apply where UPPER(purpose) = 'XSTREAM STREAMS';