Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Oracle Collections

Re: Oracle Collections

From: DA Morgan <damorgan_at_psoug.org>
Date: Sun, 23 Sep 2007 09:52:04 -0700
Message-ID: <1190566315.775074@bubbleator.drizzle.com>


amerar_at_iwc.net wrote:
> Hi,
>
> I need to test a procedure. The procedure has like 15 input
> parameters, and 1 output parameter. Of the 15 input parameters, one
> of them is a collection.
>
> How can I simulate this EXECUTE statement from SQLPLUS???
>
> Thanks!

What William suggests or by writing an anonymous block.

DECLARE
   ... define your collection here
BEGIN
   ... load your collection here
   call your proc
END;
/

-- 
Daniel A. Morgan
University of Washington
damorgan_at_x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Received on Sun Sep 23 2007 - 11:52:04 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US