It can’t be this hard. I am able to display the results of a refcursor when calling a stored proc in version 9.7.2.5, but not in 10.1.1.8. How can I get this to work in 10 like it works in 9??? Here’s what works in 9:
In the “Set Parameters” dialog, you have to click the “output
options” toolbar button (the last one) to enable the loading of ref cursor
results to grid.
That’s fine if I have a static procedure taking in no parameters, or I only care about testing one set of values, but if I want to test muliple inputs with different permutations, I then need to go through the same process numerous times. I’d like to have the code in an editor window so that I can simply change the input values. Can this be done?
I did not get an answer for my question earlier, so I will try this topic that
looks very close.
How can I view the value of the “out” parameter in TOAD?
begin
pk_idw_recon.pr_recon_results(p_run_id => :p_run_id,
p_summary_report_sql => :p_summary_report_sql);
end;
The second parameter is “out” type clob, I would like to run the
procedure and see the result. I do not want to declare a variable and use
dbms_output which does work. Please advise. Other oracle tools (like PL/SQL
Developer let you do it).
I did not get an answer for my question earlier, so I will try this topic that
looks very close.
How can I view the value of the “out” parameter in TOAD?
begin
pk_idw_recon.pr_recon_results(p_run_id => :p_run_id,
p_summary_report_sql => :p_summary_report_sql);
end;
The second parameter is “out” type clob, I would like to run the
procedure and see the result. I do not want to declare a variable and use
dbms_output which does work. Please advise. Other oracle tools (like PL/SQL
Developer let you do it).
I did not get an answer for my question earlier, so I will try this topic that
looks very close.
How can I view the value of the “out” parameter in TOAD?
begin
pk_idw_recon.pr_recon_results(p_run_id => :p_run_id,
p_summary_report_sql => :p_summary_report_sql);
end;
The second parameter is “out” type clob, I would like to run the
procedure and see the result. I do not want to declare a variable and use
dbms_output which does work. Please advise. Other oracle tools (like PL/SQL
Developer let you do it).