Re: Unexpected SQL error for UPDATE - Mailing list pgsql-sql

From aurora
Subject Re: Unexpected SQL error for UPDATE
Date
Msg-id cbd177510607121139l3f00b7cne1606f0854adc0ff@mail.gmail.com
Whole thread Raw
In response to Re: Unexpected SQL error for UPDATE  ("Jaime Casanova" <systemguards@gmail.com>)
Responses Re: Unexpected SQL error for UPDATE  ("Jaime Casanova" <systemguards@gmail.com>)
List pgsql-sql
Yes that helped!

  reindex index users_email_address_text_key;
  UPDATE users set email_address_text=email_address;

It kind of works now. Or at least it does not result in error. The UPDATE query is running for more than an hour and still hasn't return. This is inline 
with what we have seen before that coping 1 million fields seems to be 
excessively slow.

About the index, it is created implicitly because of the UNIQUE constraint. At this point right after the column is added, they are all null.

wy

On 7/12/06, Jaime Casanova <systemguards@gmail.com> wrote:
users_email_address_text_key sounds a lot like an index... is it an
index? if so, what happenned if you REINDEX the table or even DROP and
CREATE the index again? it certainly sounds to an index corruption.

--
regards,
Jaime Casanova


pgsql-sql by date:

Previous
From: Mark Stosberg
Date:
Subject: Avoiding RI failure with INSERT ... SELECT FROM
Next
From: Scott Marlowe
Date:
Subject: Re: How to find entries missing in 2nd table?