Re: Unexpected SQL error for UPDATE

Поиск
Список
Период
Сортировка
От aurora
Тема Re: Unexpected SQL error for UPDATE
Дата
Msg-id cbd177510607121139l3f00b7cne1606f0854adc0ff@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Unexpected SQL error for UPDATE  ("Jaime Casanova" <systemguards@gmail.com>)
Ответы Re: Unexpected SQL error for UPDATE
Список 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 по дате отправления:

Предыдущее
От: Mark Stosberg
Дата:
Сообщение: Avoiding RI failure with INSERT ... SELECT FROM
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: How to find entries missing in 2nd table?