From: | "Scott Marlowe" <scott(dot)marlowe(at)gmail(dot)com> |
---|---|
To: | "Giovanni Nervi" <giovanni(dot)nervi(at)gmail(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Drop Index and Create Index |
Date: | 2008-07-22 08:00:52 |
Message-ID: | dcc563d10807220100h4f6a221ax2732970e1588cfca@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Tue, Jul 22, 2008 at 1:39 AM, Giovanni Nervi
<giovanni(dot)nervi(at)gmail(dot)com> wrote:
> Hi,
>
> I would like recreate all indexes on a database, the command reindex
> is exclusive lock on table so I prefer the method drop index and
> create index. Is there a script for extract the command for the create
> index? I see pg_dump but it extract all object definitions. I see the
> source of pgAdmin for extract the definition of index, so before to
> begin to develop of a shell script for extract the definition of all
> indexes, I ask to you if this script already exist.
start with "select * from pg_indexes" and go from there.
From | Date | Subject | |
---|---|---|---|
Next Message | Daniel Chiaramello | 2008-07-22 09:48:41 | Using ISpell dictionary - headaches... |
Previous Message | Giovanni Nervi | 2008-07-22 07:39:12 | Drop Index and Create Index |