ACE Director Alum Daniel Morgan, founder of Morgan's Library, is scheduling
complimentary technical Workshops on Database Security for the first 30
Oracle Database customers located anywhere in North America, EMEA, LATAM, or
APAC that send an email to
asra_us@oracle.com. Request a Workshop for
your organization today.
Purpose
The purpose is unknown but this orphaned package specification contains four stored procedure and no package body. This package is referenced in {ORACLE_HOME}/rdbms/admin/orapls11.sym and contains the following in the source file:
Rem DESCRIPTION
Rem Define package sys_stub_for_purity_analysis.
Rem As we create the top level subprograms, a dependency between
Rem the subprogram and this package is formed. For more info on
Rem this package, please refer to the document on interop purity
Rem
Rem NOTES
Rem This package has to run after the creation of standard and
Rem before any other creation of top level subprograms.
Rem Top level subprograms should NOT be defined in standard.sql
SYS_STUB_FOR_PURITY_ANALYSIS is a stand-alone package header (no body). The functionality it provides is defined with PRAGMA RESTRICT_REFERENCES.
AUTHID
DEFINER
Dependencies
SELECT name FROM dba_dependencies where referenced_name = 'SYS_STUB_FOR_PURITY_ANALYSIS'
UNION
SELECT referenced_name FROM dba_dependencies WHERE name = 'SYS_STUB_FOR_PURITY_ANALYSIS';
Returns dependencies with 594 separate objects
Documented
No
Exceptions
Error Code
Reason
PLS-00751
cannot find PACKAGE SYS_STUB_FOR_PURITY_ANALYSIS
Cause: A top level subprogram (function or procedure) cannot be created if the system package SYS_STUB_FOR_PURITY_ANALYSIS is missing in the Oracle database.
exec sys_stub_for_purity_analysis.prds;
BEGIN sys_stub_for_purity_analysis.prds; END;
*
ERROR at line 1:
ORA-04067: not executed, package body "SYS.SYS_STUB_FOR_PURITY_ANALYSIS" does not exist
ORA-06508: PL/SQL: could not find program unit being called: "SYS.SYS_STUB_FOR_PURITY_ANALYSIS"
ORA-06512: at line 1
SELECT object_id, object_type
FROM dba_objects
WHERE object_name = 'SYS_STUB_FOR_PURITY_ANALYSIS';
SQL> exec sys_stub_for_purity_analysis.prps;
BEGIN sys_stub_for_purity_analysis.prps; END;
*
ERROR at line 1:
ORA-04067: not executed, package body "SYS.SYS_STUB_FOR_PURITY_ANALYSIS" does not exist
ORA-06508: PL/SQL: could not find program unit being called: "SYS.SYS_STUB_FOR_PURITY_ANALYSIS"
ORA-06512: at line 1
SQL> exec sys_stub_for_purity_analysis.pwds;
BEGIN sys_stub_for_purity_analysis.pwds; END;
*
ERROR at line 1:
ORA-04067: not executed, package body "SYS.SYS_STUB_FOR_PURITY_ANALYSIS" does not exist
ORA-06508: PL/SQL: could not find program unit being called: "SYS.SYS_STUB_FOR_PURITY_ANALYSIS"
ORA-06512: at line 1
SQL> exec sys_stub_for_purity_analysis.pwps;
BEGIN sys_stub_for_purity_analysis.pwps; END;
*
ERROR at line 1:
ORA-04067: not executed, package body "SYS.SYS_STUB_FOR_PURITY_ANALYSIS" does not exist
ORA-06508: PL/SQL: could not find program unit being called: "SYS.SYS_STUB_FOR_PURITY_ANALYSIS"
ORA-06512: at line 1