From: | Devrim GUNDUZ <devrim(at)gunduz(dot)org> |
---|---|
To: | PostgreSQL Mailing Lists-SQL <pgsql-sql(at)postgresql(dot)org> |
Cc: | PostgreSQL Mailing Lists-SQL <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: Error with DROP column |
Date: | 2003-10-27 19:49:41 |
Message-ID: | Pine.LNX.4.44.0310272143340.19831-100000@emo.org.tr |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
On Mon, 27 Oct 2003 mohan(at)physics(dot)gmu(dot)edu wrote:
> Hi All i am trying to DROP the column but i keep getting this error.
>
> ALTER TABLE institution DROP COLUMN name CASCADE;
> ERROR: ALTER TABLE / DROP COLUMN is not implemented
I think you are using an old version of PostgreSQL. AFAIR this
functionality was implemented on 7.3. Here is mine:
*******************************************
postgres(at)[local]:test=# SELECT version();
version
- ---------------------------------------------------------------------------------------------------------
PostgreSQL 7.3.4 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.2.2
20030222 (Red Hat Linux 3.2.2-5)
(1 row)
postgres(at)[local]:test=# ALTER TABLE institution drop column name;
ALTER TABLE
*******************************************
Maybe you should upgrade your PostgreSQL.
Regards,
- --
Devrim GUNDUZ
devrim(at)gunduz(dot)org devrim(dot)gunduz(at)linux(dot)org(dot)tr
http://www.tdmsoft.com
http://www.gunduz.org
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)
iD8DBQE/nXbYtl86P3SPfQ4RAqScAKDsSSSG7KYiM/TnBRguaG5hRF6MIACgwbfu
ZdGWzsBbtu486c0BreFFlmA=
=hFr5
-----END PGP SIGNATURE-----
From | Date | Subject | |
---|---|---|---|
Next Message | Alexander Vlasenko | 2003-10-27 19:54:05 | Re: extend INSERT by 'INSERT INTO table FETCH ... FROM cursor' syntax |
Previous Message | Tomasz Myrta | 2003-10-27 19:48:54 | Re: Error with DROP column |