Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Troubles executing PL/SQL procedure
How can I run a procedure in SQLplus?
I'm using oracle 9i
See below fro error message please
<SQLplus>
SQL> CREATE OR REPLACE PROCEDURE add_categpry(
2 v_description category.description%TYPE 3 ) AS4 BEGIN
Procedure created.
SQL> exec add_category( 'maths, physics' ); BEGIN add_category( 'maths, physics' ); END;
*
ERROR at line 1:
ORA-06550: line 1, column 7: PLS-00201: identifier 'ADD_CATEGORY' must be declared ORA-06550: line 1, column 7:
SQL>
</SQLplus>
Thanks for helping
Arcadius A. Received on Fri May 16 2003 - 17:50:54 CDT
![]() |
![]() |