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!

error ora-00255

user452402Aug 27 2007 — edited Aug 27 2007
Greeting,

I want to process using cursor.

DECLARE
CURSOR c_order IS SELECT * FROM ORDER_H;
rw_order order_h%rowtype;

BEGIN
OPEN c_order;
LOOP
FETCH c_order into rw_order;
EXIT WHEN c_order%NOTFOUND;
END LOOP;
END;

when prosess that I got error ;
ORA-00255

Please help and guide me.

Thank you
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 24 2007
Added on Aug 27 2007
1 comment
571 views