Re: How to increase Column width of table

From: Robert Treat <xzilla(at)users(dot)sourceforge(dot)net>
To: Christoph Haller <ch(at)rodos(dot)fzk(dot)de>
Cc: pgsql-sql(at)postgresql(dot)org, atul(at)imcindia(dot)net
Subject: Re: How to increase Column width of table
Date: 2003-03-25 16:46:30
Message-ID: 1048610790.13799.491.camel@camel
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

http://fts.postgresql.org/db/mw/msg.html?mid=1071582

On Tue, 2003-03-25 at 10:18, Christoph Haller wrote:
> >
> > 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

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Andreas Pflug 2003-03-25 16:50:41 Re: How to increase Column width of table
Previous Message Christoph Haller 2003-03-25 15:18:11 Re: How to increase Column width of table