Operating System - HP-UX
1753929 Members
8633 Online
108810 Solutions
New Discussion юеВ

SQLPLUS command unsuccessfull with Oracle 8.0.6

 
SOLVED
Go to solution
Bokoko
Advisor

SQLPLUS command unsuccessfull with Oracle 8.0.6

Would you please tell me why I have this message error ?



cyb_hpux [ /cyborg/app/oracle/product/806 ] $ sqlplus system/manager

SQL*Plus: Release 8.0.6.0.0 - Production on Fri Sep 20 11:34:06 2002

(c) Copyright 1999 Oracle Corporation. All rights reserved.

ERROR:
ORA-06553: PLS-213: package STANDARD not accessible


Error accessing package DBMS_APPLICATION_INFO
ERROR:
ORA-06553: PLS-213: package STANDARD not accessible



Connected to:
Oracle8 Enterprise Edition Release 8.0.6.0.0 - Production
PL/SQL Release 8.0.6.0.0 - Production

SQL>
2 REPLIES 2
Dirk Wiedemann
Respected Contributor
Solution

Re: SQLPLUS command unsuccessfull with Oracle 8.0.6

Hello Bokoko,

this means that the standard.sql is not accessible. First check, if standard.sql exists.
If not: run the scripts catalog.sql and catproc.sql to your database. They create the standard.sql.
If yes: check permissions to standard.sql. Try to recreate it.

hope this helps
Dirk
T G Manikandan
Honored Contributor

Re: SQLPLUS command unsuccessfull with Oracle 8.0.6

Re-run your standard.sql located at ORACLE_HOME/rdbms/admin


Thanks