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

Home -> Community -> Mailing Lists -> Oracle-L -> [oracle-l] FW: pl/sql array processing?

[oracle-l] FW: pl/sql array processing?

From: Guang Mei <gmei_at_incyte.com>
Date: Tue, 27 Jan 2004 12:55:11 -0500
Message-ID: <NJEDKDKJDGAKAEKKNEEJIEIPCMAA.gmei@incyte.com>


My following message did not seem to make it to oracle-l.freelists. Let me try it again.

Guang



Hi,

I have the folliwng pl/sql code for oracle 8173. I am wondering if there is a way to make it faster by not looping each array elements, but doing some kind of "forall" opration to my_package.function?

declare
  type numTbl is table of number index by binary_integer;

  refTbl		numTbl;
  i             number;
  str           varchar2(30);

begin
  refTbl (1) := 1;
  refTbl (9) := 1;
  refTbl(15) := 1;
  refTbl(99) := 1;

  i := refTbl.first;
  while i is not null loop
    dbms_output.put_line ('i=' || i);
    str:= my_package.function(i);
    i := refTbl.next(i);
  end loop;
end;
/

TIA. Guang



Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
Received on Tue Jan 27 2004 - 11:55:11 CST

Original text of this message

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