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

Home -> Community -> Usenet -> c.d.o.server -> running trough a binary_indexed table in PL/SQL

running trough a binary_indexed table in PL/SQL

From: Kjetil Skotheim <kjetil.skotheim_at_usit.uio.no>
Date: 1997/01/06
Message-ID: <5arcck$h4i@ratatosk.uio.no>#1/1

What is the best/fastest way of for-looping trough all entries in a binary_indexed table in PL/SQL?

I want to do something like:

declare
  type tab_type is table of number(10) index by binary_integer;   tab tab_type;
begin
...

  for keys tab loop
    ...
  end loop;
...

end; Received on Mon Jan 06 1997 - 00:00:00 CST

Original text of this message

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