DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: execute a store procedure from toad with VARRAY as input

  1. #1
    Join Date
    Jan 2012
    Posts
    1

    Unhappy execute a store procedure from toad with VARRAY as input

    I'm trying to execute a procedure from TOAD, that procedure takes a VARRAY as input. be low are the steps i followed:

    1.right click on the procedure name
    2.execute procedure.
    3.i got a dialog box to enter input parameters, but varray input field was disabled. Can, you please, help me in this regard how to execute the procedure.

    below is the spec for the procedure

    PROCEDURE PKG_XYZ
    (
    in_varray IN InputType,
    in_status IN VARCHAR2,
    out_cursor OUT typ_refcur
    );

  2. #2
    Join Date
    Nov 2000
    Location
    Pittsburgh, PA
    Posts
    4,166
    Try wrapping the call in an anonymous PL/SQL block where you create a variable to hold the varray and have that PL/SQL block display the results, or do what every you are trying to do.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width