Hi Suman,You do not get any extra value from II or IV. It's sufficient to have the primary key on the two columns. That gives you uniqueness for the columns and so an extra uniqueness constraint is redundant, and, well, erroneous.
Craig On Oct 17, 2007, at 3:46 AM, Suman N wrote:
Hi,I have executed the following queries on a table in the given order and I am getting the error mentioned below.I have created a table and then created an unique index on two columns for the table.I have used the same two columns to add a primary key for the table and then used a query to set the two columns with unique key constraint.I. CREATE TABLE XSLTEMPLATE_TEMP(TEMPLATEID BIGINT not null, LOCALEIDENTIFIER CHARACTER(5) not null, TEMPLATENAME CHARACTER(100), LATESTVERSION INT not null, CHECKEDOUT CHARACTER(1) not null, CHECKEDOUTBY CHARACTER(30), CHECKEDOUTVERSION INT not null, CHECKEDOUTTIME TIMESTAMP, COCOMMENT VARCHAR(300), TEMPLATEFILE VARCHAR(300), TEMPLATETYPE CHARACTER (10), TEMPLATEIDCODE CHARACTER(10), EDITABLE CHARACTER(1) not null, RELATESTO CHARACTER(10), LASTWRITTEN TIMESTAMP);II. CREATE UNIQUE INDEX XSLTEMPLATE_TEMP ON XSLTEMPLATE_TEMP(TEMPLATEID, LOCALEIDENTIFIER);III. ALTER TABLE XSLTEMPLATE_TEMP ADD CONSTRAINT XSLTEMPLATE_TEMP PRIMARY KEY(TEMPLATEID, LOCALEIDENTIFIER);IV. ALTER TABLE XSLTEMPLATE_TEMP ADD UNIQUE (LOCALEIDENTIFIER, TEMPLATEID);When the last query to add a unique key constraint on the table, I am getting the following errorERROR 42Z93: Constraints 'SQL071017145943950' and 'SQL071017145906390' have the same set of columns, which is not allowed.Either of the query iii or query iv alone could be executed successfully. I was not able to execute both these queriesCan anyone please explain why I am getting this error and also suggest what needs to be done to avoid this error?Thanks & Regards, Suman.NThe information in this email is confidential and may be legally privileged. It is intended solely for the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in relianceon it, is prohibited and may be unlawful. If you are not the intendedaddressee please contact the sender and dispose of this e-mail. Thank you.
Craig Russell Architect, Sun Java Enterprise System http://java.sun.com/products/jdo 408 276-5638 mailto:[EMAIL PROTECTED] P.S. A good JDO? O, Gasp!
smime.p7s
Description: S/MIME cryptographic signature
