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 -> Re: Improving performance of view

Re: Improving performance of view

From: Martin Haltmayer <Martin_Haltmayer_at_kirchgruppe.de>
Date: 1997/10/22
Message-ID: <344D974A.6CA46386@kirchgruppe.de>#1/1

Define a table RANGES as

insert into RANGES values (:A10, :A11);
insert into RANGES values (:A12, :A13);
...

insert into RANGES values (:A34, :A35);
insert into RANGES values (:A36, :A36);
insert into RANGES values (:A37, :A37);

...

insert into RANGES values (:A57, :A57);

select ...
from COVP, RANGES
where ...
and KSTAR between LOWER and UPPER;

Give it a try.

Martin Haltmayer Received on Wed Oct 22 1997 - 00:00:00 CDT

Original text of this message

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