Get all system packages : dba_objects « System Tables Views « Oracle PL / SQL






Get all system packages

    
SQL>
SQL> select object_name
  2  from dba_objects
  3  where owner = 'SYS'
  4  and object_type = 'PACKAGE';

OBJECT_NAM
----------
STANDARD
DBMS_STAND
ARD

DBMS_REGIS
TRY

442 rows selected.

   
    
    
    
  








Related examples in the same category

1.Query dba_objects table group by object_type
2.Query object name by object id against dba_objects
3.list table, table partition, index, index partition and lob from dba_objects
4.List all not valid database objects
5.List all sys owned package name