Search notes:

ORA-06553: PLS-:

ORA-06553 is followed by a PL/SQL error, such as for example

Example

By default, there is no object named text, the following select statement throws:ORA-00904: "TEXT": invalid identifier
select
   text
from
   dual;
Create a PL/SQL package named text:
create package text as
   function greeting return varchar2;
end;
/

create package body text as
   function greeting return varchar2 as begin
       return 'Hello World!';
   end greeting;
end;
/
text is a package, not a procedure. Oracle throws ORA-06553: PLS-221: 'TEXT' is not a procedure or is undefined:
select
   text
from
   dual;
The following statement runs:
select
   text.greeting
from
   dual;
Cleaning up:
drop package text;

See also

ORA-06550: line …, column …:
ORA-06544: PL/SQL: internal error, arguments: [], [], [], [], [], [], [], []
Other Oracle error messages

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759436194, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-06553_PLS-(87): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78