Index in partition table?
Hi,
I have created the table with list partition. See the below table structure.
drop table if exists test;
create table test
(
id int ,
name varchar(20)
)
partition by list(id)
(
partition p1 values in(1,2,3,4,5),
partition p2 values in(6,7,8,9,10)
);
We have partition the table based in the field "id".
Will it create the implicit index for the field "id" while creating the table? Or Is need to create the index explicitly?
Thanks.
Regards,
S.Ashokkumar
India.
Subject
Views
Written By
Posted
Index in partition table?
4774
November 12, 2008 06:17AM
3090
December 11, 2008 08:52AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.