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

Home -> Community -> Usenet -> c.d.o.tools -> denormalize using function based indexes

denormalize using function based indexes

From: sam <roadrash_at_my-deja.com>
Date: 2000/06/09
Message-ID: <8hqip8$m85$1@nnrp1.deja.com>#1/1

Can function based indexes be used to implement denormalization?

i have tables
  tab1 (att1 varchar2(100), att2 varchar2(200)

        att3 varchar2(200), value number);   tab2 (value number , val2 number);

 select tab2.val2 from tab1, tab2
  where tab1.att1 = my_var1
    and tab1.att2 = my_var2
    and tab1.att3 = my_var3
    and tab1.value = tab2.value;

Is there any way to bend function-based
indexes in a way that gets rid of the join?

I cannot denormalize the app I'm working on by adding tables but indexes are fair game. Ideas, speculations, and example code appreciated,

--
thanks for reading


Sent via Deja.com http://www.deja.com/
Before you buy.
Received on Fri Jun 09 2000 - 00:00:00 CDT

Original text of this message

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