DB2 WSE 8.1 FP5
Red Hat AS 2.1
What is the difference between adding a unique constraint like:
ALTER TABLE <SCHEMA>.<TABLE > ADD CONSTRAINT CC1131378283225 UNIQUE (
<COL1>) ;
and adding a unique index like:
CREATE UNIQUE INDEX <SCHEMA>.<BLA H> ON <SCHEMA>.<TABLE > (<COL1> ASC)
PCTFREE 10 MINPCTUSED 10;
Just curious.
TIA
aj
Red Hat AS 2.1
What is the difference between adding a unique constraint like:
ALTER TABLE <SCHEMA>.<TABLE > ADD CONSTRAINT CC1131378283225 UNIQUE (
<COL1>) ;
and adding a unique index like:
CREATE UNIQUE INDEX <SCHEMA>.<BLA H> ON <SCHEMA>.<TABLE > (<COL1> ASC)
PCTFREE 10 MINPCTUSED 10;
Just curious.
TIA
aj
Comment