nav_kum_v
exec <procedure_name>('123');
click F5 or F9
I get on the dbms output window the following (not getting the output data):
begin
<procedure_name>('123');
end;
PL/SQL procedure successfully completed
If I type on the upper pane
set serveroutput on size 1000000
<procedure_name>('123');
it gives error
ORA-00922: missing or invalid option
Main Topics
Browse All Topics





by: nav_kum_vPosted on 2006-11-17 at 09:08:36ID: 17966772
open a new sql editor and then run your pl/sql code.
The bottom portion of the toad where you see the results when you a execute a normal sql query has a tab called 'DBMS Output'. Just click on this tab after executing your pl/sql code.
Thanks