ScottMattes
Member³
I thought I knew how to define a cursor variable in the test window so that I could look at the result set after the run, something like
select *
into :my_result_set
from all_tables;
And then scan for variables and change my_result_set to a cursor type, but when I tried the exact stuff above I got the following
ora-06550
pl/sql ora-00947 not enough vars
If I change the * to a single field I get another msg that says vars are of wrong type.
I am on latest version.
select *
into :my_result_set
from all_tables;
And then scan for variables and change my_result_set to a cursor type, but when I tried the exact stuff above I got the following
ora-06550
pl/sql ora-00947 not enough vars
If I change the * to a single field I get another msg that says vars are of wrong type.
I am on latest version.