Search notes:

Oracle: DBA_EXPORT_OBJECTS

dba_export_objects is a view which allows to see if a transform (dbms_metadata ?) is supported for a particular object type.
dba_export_objects selects from sys.metafilter$ and sys.metanametrans$.

Column HET_TYPE

HET_TYPE stores the name of the heterogeneous object type.
In 19c, there are for such heterogeneous object types:
select
-- count(*),
   het_type
from
   dba_export_objects
group by
   het_type;
--
-- DATABASE_EXPORT
-- SCHEMA_EXPORT
-- TABLE_EXPORT
-- TRANSPORTABLE_EXPORT

Column NAMED

The value of NAMED is either Y or N and specifies if the objects of the given type have names, i.e. if the last element of the path is a type with a name filter (which is the case if the regular expression [A-Z_]+$ matches).

See also

table_export_objects, schema_export_objects, database_export_objects, tablespace_export_objects, transportable_export_objects
data dictionary

Index