I can't seem to figure this out, maybe one of you know the answer. I am trying to export 2 user tables from oracle 8.1.5 on the NT platform. Whenever I try this, i get multiple ORA-6553 errorrs telling me PLS-213: package STANDARD not accessible
I checked to see if the standard package exsists and it does to no suprise.. i try executing it, and it bombs on line 1.
any ideas?? Is this some type of permission error??
thanks,
Steve Schroeder
University of Arizona
05-07-2001, 05:39 PM
Chintz
ARe you using the same version of the oracle export utilityas the database? There are some compatibility issues with reference to the different versions of Oracle.
The meaning of this error is that the PL/SQL compiler could not find package STANDARD in the current Oracle database. To compile a program, PL/SQL needs package STANDARD.
Troubleshoot the PLS-213 by verifying the information as follows:
You need to verify the package STANDARD is valid and owned by SYS. Do the
following:
1) Check the status of the package STANDARD using:
connect sys/
SQL> SELECT * FROM DBA_OBJECTS WHERE OWNER = 'SYS'
AND OBJECT_NAME = 'STANDARD';
If you find the status is 'INVALID' then:
SQL> ALTER PACKAGE STANDARD COMPILE;
You may also find that a number of other packages are in 'INVALID'
state. They should ALL be (re)compiled.