What oracle data dictionary view can be used to decribe types defined in a plsql package

data dictionaryoracleplsql

What oracle data dictionary view can be used to describe types / subtypes defined in a plsql package?

Best Answer

If all of the types uses are used explicitly, meaning now using execute immediate, then you can look at dba_dependencies to see what types a PL/SQL stored procedure uses.