Re: How to increase Column width of table - Mailing list pgsql-sql

From Christoph Haller
Subject Re: How to increase Column width of table
Date
Msg-id 3E807332.9C5EBEE@rodos.fzk.de
Whole thread Raw
Responses Re: How to increase Column width of table  (Robert Treat <xzilla@users.sourceforge.net>)
Re: How to increase Column width of table  (Andreas Pflug <Andreas.Pflug@web.de>)
List pgsql-sql
>
>  Atul here, i have one table and i would like to increase the length
of
>  existing column and the sql statement is
>
>        Exisiting Column  is "vehicle_make"  varchar(30)
>
>        SQL: alter table commute_profile alter column "vehicle_make"
> varchar(100)
>
>        But this gives error.
>
>        ERROR:  parser: parse error at or near "varchar"
>
I'm afraid there is no one-step-solution to this.
You'll have to go the hard way as

CREATE new_table (
...
... varchar(100),
...
);
INSERT INTO new_table as SELECT * FROM old_table;
DROP old_table;
ALTER TABLE new_table RENAME TO old_table;
And don't forget about re-creating related indexes etc.

Regards, Christoph



pgsql-sql by date:

Previous
From: "Atul Pedgaonkar"
Date:
Subject: Re: How to increase Column width of table
Next
From: Robert Treat
Date:
Subject: Re: How to increase Column width of table