error ora-00255
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