Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

SET lines 150

col "OBJECT_TYPE" for a20


col "OWNER.OBJECT" for a40
SELECT o.status, o.object_id, o.object_type,
o.owner||'.'||object_name "OWNER.OBJECT"
FROM dba_objects o, dba_datapump_jobs j
WHERE o.owner=j.owner_name AND o.object_name=j.job_name
AND j.job_name NOT LIKE 'BIN$%' ORDER BY 4,2;

You might also like