Re: changing field length

From: "Nick Fankhauser" <nickf(at)ontko(dot)com>
To: "Jodi Kanter" <jkanter(at)virginia(dot)edu>, "Postgres Admin List" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: changing field length
Date: 2003-08-20 00:37:38
Message-ID: NEBBLAAHGLEEPCGOBHDGGEJLIAAA.nickf@ontko.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Jodi-

Here's an example of the "hack" approach, which I've used without causing
any problems for some time:

update pg_attribute set atttypmod = 104
where attrelid = ( select oid from pg_class where relname = 'actor'
and attname = 'actor_full_name' );

In your case, you'd substitute 254 for 104, your table name for "actor" and
your field name for "actor_full_name";

-Nick

-----Original Message-----
From: pgsql-admin-owner(at)postgresql(dot)org
[mailto:pgsql-admin-owner(at)postgresql(dot)org]On Behalf Of Jodi Kanter
Sent: Tuesday, August 19, 2003 1:34 PM
To: Postgres Admin List
Subject: [ADMIN] changing field length

I am running 7.3.3. Can I change a field that is varying character(128) to
varying character(250)?

Thanks
Jodi

--

_______________________________
Jodi L Kanter
BioInformatics Database Administrator
University of Virginia
(434) 924-2846
jkanter(at)virginia(dot)edu
<!--[if !supportLineBreakNewLine]-->
<!--[endif]-->
<!--[if !supportEmptyParas]--> <!--[endif]-->
<!--[if !supportEmptyParas]--> <!--[endif]-->
<!--[if !supportEmptyParas]--> <!--[endif]-->

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Chris Miles 2003-08-20 09:54:11 Re: get current queries
Previous Message theguardian 2003-08-20 00:19:19 Incremental Backup