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 -> indexes and views

indexes and views

From: steph <stephan0h_at_gmx.net>
Date: 9 Mar 2005 23:20:31 -0800
Message-ID: <1110439231.012547.264010@l41g2000cwc.googlegroups.com>


suppose the following:

I have a table like

create table t1
(c1 number
,c2 number
,primary key (c1)
)
/

>From this table I create a view like

create view v1 as
select to_char(c1)||'.'||to_char(c2) c3
  from t1
/

Now of course, when I query v1 no index can be used. To create an index on c3 I would have to create a materlialized view. Or is there a way to utilize indexes defined on t1 for queries on v1? Can I create an index on t1 which supports queries on v1?

Thanks for all the input,
stephan Received on Thu Mar 10 2005 - 01:20:31 CST

Original text of this message

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