Re: Unique index

From: Christopher Hoff <hoff_at_inxpress.net>
Date: 1996/09/19
Message-ID: <32415C40.79AF_at_inxpress.net>#1/1


Siegfried Hempfer wrote:
>
> Is it possible with the current ORACLE release to define a unique index,
> i.e. to formulate something like CREATE UNIQUE INDEX using ORACLE SQL?
> My documentation from december 92 says no, but maybe thtis was changed
> in the last years?!CREATE TABLE TABLEA

      (TABLE_KEY                CHAR(18) NOT NULL,
       FRED                     CHAR(18) NOT NULL
);

CREATE UNIQUE INDEX PK_TABLEA
  ON TABLEA
(

       TABLE_KEY                      ASC
);

CREATE UNIQUE INDEX UK_FRED
  ON TABLEA
(

       FRED                           ASC
); Received on Thu Sep 19 1996 - 00:00:00 CEST

Original text of this message