On May 5, 2009, at 12:08 PM, Tom Lane wrote: I'm sorry, I should have included this. Here is what I'm seeing. This is PostgreSQL 8.3.6 on Solaris 10. km_tezt=# \d "tblPeople"; Table "public.tblPeople" Column | Type | Modifiers ----------+------------------------+---------------------------------------------------------------- peopleId | integer | not null default nextval('"tblPeople_peopleId_seq"'::regclass) fName | character varying(70) | mName | character varying(70) | lName | character varying(100) | ivlweb | boolean | cnsweb | boolean | Indexes: "primary_key_tblPeople" PRIMARY KEY, btree ("peopleId") "people_all_fields" UNIQUE, btree ("lName", "fName", "mName") km_tezt=# alter table "tblPeople" drop constraint "people_all_fields"; ERROR: constraint "people_all_fields" does not exist Thanks, Carol
|