Question

Using toad and an oracle database, how can I call a sp and see the results by passing an array to one of the parameters of the sp?

Was it helpful?

Solution

In the Editor tab you can call it like this:

begin
    myproc (my_array_type(1,4,7,9));
end;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top