How to display the query result from pl/sql on the Sql screen.
Printable View
How to display the query result from pl/sql on the Sql screen.
set serveroutput on
something like that
cursor1 is select blah blah
for c1 in cursor1
loop
dbms_output.put_line(cursor1.blah||'' ''||blah blah);
end loop
Eugene
OCP