Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: indexes and views
steph wrote:
> 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
It is not orrect that no index can be used. It is correct that no default B*Tree index can be used. Build a function based index and it will work just fine.
I would however suggest that you not build your primary key inline as you have demonstrated. Build it with an ALTER TABLE statement so that you can define its name and storage such as PCTFREE 0.
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace 'x' with 'u' to respond)Received on Thu Mar 10 2005 - 11:02:15 CST
![]() |
![]() |