Re: ALTER TABLE for field modify...

From: MG <makgab(at)freemail(dot)hu>
To: PostgreSQL List <pgsql-admin(at)postgresql(dot)org>
Subject: Re: ALTER TABLE for field modify...
Date: 2002-05-14 16:24:55
Message-ID: XFMail.20020506190803.makgab@freemail.hu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin


On 03-May-2002 Nick Fankhauser wrote:
> alter table <tablename> drop constraint ID unique;
> alter table <tablename> drop constraint ID not null;
>
> alter table <tablename> add constraint ID references table2 ;
>

Hi!

It not works. :(
I try it:
proba=# create table "tabla1" ("ID" int8 NOT NULL UNIQUE, "nev" varchar(20) );
NOTICE: CREATE TABLE/UNIQUE will create implicit index 'tabla1_ID_key' for
table 'tabla1'
CREATE
proba=# create table "tabla2" ("ID2" int8 NOT NULL UNIQUE, "nev2" varchar(20) );
NOTICE: CREATE TABLE/UNIQUE will create implicit index 'tabla2_ID2_key' for
table 'tabla2'
CREATE

proba=# alter table tabla1 drop constraint ID not null;
ERROR: parser: parse error at or near "not"
-------------------------------------------

What is the problem?

Bye!
-----------------
Linux RedHat 7.1
-----------------

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Tao Wan 2002-05-14 19:40:26 failed to start up pgsql
Previous Message Tom Lane 2002-05-14 14:55:19 Re: no one parent tuple found