create table test
(
x integer
y integer
z integer
);
alter table test add constraint primary key (x);
create unique index index
create unique index index
create unique index index
alter table test add constraint cons
alter table test add constraint cons
alter table test add constraint cons
alter table test add constraint cons
alter table test add constraint cons
處理辦法:
提取所有約束(UCPR)
提取名稱不在約束表中的所有索引
From:http://tw.wingwit.com/Article/program/Oracle/201311/18470.html