Search notes:

Oracle: DBMS_TYPE_UTILITY

A comment in $ORACLE_HOME/rdbms/admin/dbmstypu.sql reads:
I am removing all procedure from the package as they are no longer in use and they have too many security holes to leave around. Keeping the package for possible future use.
Accordingly to the comment, the specification of the package is:
create or replace package dbms_type_utility as 
       procedure none;
end dbms_type_utility;
/

See also

Oracle DBMS PL/SQL packages

Index