Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

HELP - how can you get duplicate rows with unique index

emersoklDec 12 2008 — edited Dec 12 2008
I hope someone can help me!

I have duplicate rows in a table with a unique index. I am running Oracle 11g windows database. The index descripttion is below. How can this happen? Is there some way to validate indexes are working?

Thanks!
Kathie


CREATE UNIQUE INDEX SYSADM.PS_ADDRESSES_SA ON SYSADM.PS_ADDRESSES_SA
(EMPLID, ADDRESS_TYPE, "EFFDT" DESC)
LOGGING
TABLESPACE PSINDEX
PCTFREE 10
INITRANS 2
MAXTRANS 255
STORAGE (
INITIAL 40K
NEXT 1M
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
BUFFER_POOL DEFAULT
)
NOPARALLEL;
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 9 2009
Added on Dec 12 2008
7 comments
632 views