RE: Can I partition my primary key constraint index?

2001-05-15 Thread paquette stephane
What is the behavior difference of using a non-unique index to enforce a unique/primary key constraint when inserting a duplicate value ? Index range scan ? --- Brian MacLean [EMAIL PROTECTED] a écrit : ahhh, mostly right. I found in v8.1.6 that if I use a non-unique index to

RE: Can I partition my primary key constraint index?

2001-05-15 Thread Brian MacLean
Title: RE: Can I partition my primary key constraint index? I don't know. I made the non-unique index by mistake and noticed that the index did not drop when I was correcting the mistake. -Original Message- From: paquette stephane [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 15

Re: Can I partition my primary key constraint index?

2001-05-14 Thread Cherie_Machler
: [EMAIL PROTECTED]Fax to: omSubject: Can I partition my primary key constraint index? 05/11/2001 04:51 PM Please respond to ORACLE-L Oracle

Re: Can I partition my primary key constraint index?

2001-05-14 Thread Diana_Duncan
Subject: Re: Can I partition my primary key constraint index

RE: Can I partition my primary key constraint index?

2001-05-14 Thread Toepke, Kevin M
: [EMAIL PROTECTED] Subject: Re: Can I partition my primary key constraint index? 05/13/01 02:55 PM Please respond to ORACLE-L Yes, Cherie, you can. When creating the primary key constraint

RE: Can I partition my primary key constraint index?

2001-05-14 Thread Cherie_Machler
: ndant.com Subject: RE: Can I partition my primary key constraint index? Sent by: [EMAIL PROTECTED

RE: Can I partition my primary key constraint index?

2001-05-14 Thread Brian MacLean
Title: RE: Can I partition my primary key constraint index? ahhh, mostly right. I found in v8.1.6 that if I use a non-unique index to enforce a unique/primary key constraint that the index does not drop when you drop the constraint. -Original Message- From: Vadim Gorbounov

Can I partition my primary key constraint index?

2001-05-11 Thread Cherie_Machler
Oracle will automatically create an index for your primary key constraint. I have a lot of large partitioned tables in my data warehouse. All of my primary key indexes are non-partitioned. I would like them to be partitioned. When I drop the constraint and re-enable it, can I specify at that

RE: Can I partition my primary key constraint index?

2001-05-11 Thread Vadim Gorbounov
Hello, Cherie, Short note first - when you drop primary key the associated index will be dropped too. To partition the index you will create this index first and then alter table table name add constraint index name primary key(column list); HTH Vadim Gorbounov