Re: Some frustrations with admin tasks on PGSQL database

From: "Phoenix Kiula" <phoenix(dot)kiula(at)gmail(dot)com>
To: depesz(at)depesz(dot)com
Cc: "Postgres General" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Some frustrations with admin tasks on PGSQL database
Date: 2007-08-17 14:22:55
Message-ID: e373d31e0708170722s406cd82ancc6b6b36990f258c@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 17/08/07, hubert depesz lubaczewski <depesz(at)depesz(dot)com> wrote:
> On Fri, Aug 17, 2007 at 07:49:08PM +0800, Phoenix Kiula wrote:
> > I have dropped all indexes/indicises on my table, except for the
> > primary key. Still, when I run the query:
> > UPDATE mytable SET mycolumn = lower(mycolumn);
>
> can you please check this:
>
> select count(*) from mytable;
> select count(*) from mytable where mycolumn ~ '[A-Z]';
>
> and if the second is lower than first make the update:
> update mytable set mycolumn = lower(mycolumn) where mycolumn ~ '[A-Z]';
>
> of course if your data contain national characters you have to include
> them (upper case only) in this regexp.

Wow, smartest advice of the day! Yes, a lot of our data in that column
has dots and numbers (800,000 compared to 6 million), so I wanted to
get only to the stuff that was pure alphabets, but just didn't think
of how.

[Slithers away to get dunce cap].

Thanks much!

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sander Steffann 2007-08-17 14:24:14 Re: PostgreSQL clustering (shared disk)
Previous Message Tom Lane 2007-08-17 14:21:18 Re: Repeat posts