Re: Converting char to varchar automatically

From: Melvin Davidson <melvin6925(at)gmail(dot)com>
To: Andrus <kobruleht2(at)hot(dot)ee>
Cc: Jim Nasby <jim(dot)nasby(at)bluetreble(dot)com>, "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Converting char to varchar automatically
Date: 2014-10-08 23:08:45
Message-ID: CANu8FizbqXUbEuX8GxA1U7Fgg-wZCnLu5W1dtQjzmKbqshu2UA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

There really is no easy way to make a single ALTER for each table unless
you use a programming language. However, adding a
GROUP BY c.relname,
a.attname

would certainly simplify editing. Then you can combine all the
ALTER COLUMN's for each table.

On Wed, Oct 8, 2014 at 6:21 PM, Andrus <kobruleht2(at)hot(dot)ee> wrote:

> Hi!
>
> Thank you.
>
> >This revised query should give you what you need:
> >SELECT 'ALTER TABLE ' || quote_ident(n.nspname) || '.'
> > || quote_ident(c.relname)
> > || ' ALTER COLUMN ' || quote_ident(a.attname) || ' TYPE
> varchar(' || i.character_maximum_length || ');'
> > FROM pg_class c
> > JOIN pg_namespace n ON n.oid = c.relnamespace
> > JOIN pg_attribute a ON a.attrelid = c.oid
> > JOIN pg_type t ON t.oid = a.atttypid
> > JOIN information_schema.columns i ON (i.table_name = c.relname AND
> i.column_name = a.attname)
> >WHERE t.typname = 'bpchar'
> > AND c.relkind = 'r'
> > AND n.nspname <> 'pg_catalog' and not attisdropped;
>
> How to create single alter table command for every table ?
> Can we use string concat aggregate function or window functions or plpgsql
> or something other ?
>
> Andrus.
>

--
*Melvin Davidson*
I reserve the right to fantasize. Whether or not you
wish to share my fantasy is entirely up to you.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Andreas Joseph Krogh 2014-10-08 23:27:48 Importing large object (with lo_import) to table in separate tablespaces takes up lots of space in $PGDATA
Previous Message Andrus 2014-10-08 22:21:54 Re: Converting char to varchar automatically