Re: Regarding ALTER Command

From: "Jim C(dot) Nasby" <jnasby(at)pervasive(dot)com>
To: soni de <soni(dot)de(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Regarding ALTER Command
Date: 2006-06-07 14:50:20
Message-ID: 20060607145020.GT45331@pervasive.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Wed, Jun 07, 2006 at 06:13:11PM +0530, soni de wrote:
> Hello,
>
>
>
> We have database on which continueous operations of INSERT, DELETE, UPDATE
> are going on, In the mean time irrespective of INSERT and UPDATE we want to
> ALTER some filelds from the table can we do that?
>
> Would the ALTER command on heavily loaded database create any perfomance
> problem?
>
> Is it feasible to do ALTER when lots of INSERT operations are going on?

The problem you'll run into is that ALTER will grab an exclusive table
lock. If *all* the transactions hitting the table are very short, this
shouldn't be too big of an issue; the ALTER will block all new accesses
to the table while it waits for all the pending ones to complete, but if
all the pending ones complete quickly it shouldn't be a big issue.

If one of the pending statements takes a long time though...

> Postgresql version we are using is -- PostgreSQL 7.2.4

You very badly need to upgrade. 7.2 is no longer supported, and there
have been over a half-dozen data loss bugs fixed since then.
--
Jim C. Nasby, Sr. Engineering Consultant jnasby(at)pervasive(dot)com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Ivan Voras 2006-06-07 19:26:18 Curious sorting puzzle
Previous Message soni de 2006-06-07 12:43:11 Regarding ALTER Command