PLS-00201 - identifier declaration error - in resultset query [message #221539] |
Tue, 27 February 2007 06:26 |
Jegathees
Messages: 8 Registered: December 2005 Location: Coimbatore
|
Junior Member |
|
|
Dear friends,
I created one stored procedure using resultset concept instead of cursor in my oracle database (Oracle 10g Enterprise Edition Release 10.2.0.1.0). The stored procedure is
------------------------------------------------------
create or replace procedure sp_stud( p_cursor in out types.cursorType )
as
begin
open p_cursor for select * from student where readflag = ' ';
end;
------------------------------------------------------
While save this SP, it shows the following error.
PLS-00201: identifier 'TYPES.CURSORTYPE' must be declared.
Friends, I am new to PL/SQL Stored procedure concepts. Could you kindly help me to solve this problem ?
Thanking you.
Kind Regards,
Jegatheeswaran P.
While save the query, it shows the error
PLS-00201: identifier 'TYPES.CURSORTYPE' must be declared.
|
|
|
|
|
|