views:

572

answers:

1

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?

+3  A: 

In the Editor tab you can call it like this:

begin
    myproc (my_array_type(1,4,7,9));
end;
Tony Andrews