Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

PLS-00201: identifier 'T_CURSOR' must be declared

416749Dec 21 2006 — edited Dec 21 2006
Please Help


CREATE OR REPLACE PROCEDURE DEVL.GET_BIT_STAFF
(
o_cursor IN OUT t_cursor
)
IS
v_cursor t_cursor;


BEGIN
OPEN o_cursor
FOR
SELECT * FROM PROJECTS.staff2 ORDER BY LAST;
END GET_BIT_STAFF;
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 18 2007
Added on Dec 21 2006
6 comments
2,298 views