Oracle Database 26ai will be available on generic Linux platforms in January and soon on AIX and Windows
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 585 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;
*
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"
SELECT object_id, object_type
FROM dba_objects
WHERE object_name = 'SYS_STUB_FOR_PURITY_ANALYSIS';
exec sys_stub_for_purity_analysis.prps;
*
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"
exec sys_stub_for_purity_analysis.pwds;
*
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"
exec sys_stub_for_purity_analysis.pwps;
*
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"