I have written the pl/sql block.
DECLARE
type my_table
IS
TABLE OF emp_info%rowtype;
v_table my_table;
BEGIN
SELECT * bulk collect INTO v_table FROM emp_info;
FOR i IN v_table.first .. v_table.last
LOOP
dbms_output.put_line('' || v_table(i));
-- dbms_output.put_line('hai');
END LOOP;
END;
unable to execute above block, causing issue with 'dbms_output.put_line('' || v_table(i));' line.. Any help will really appreciate
thanks in advance,
vibinson Victoria.E

New Topic/Question
Reply



MultiQuote



|