Re: [GENERAL] drop/rename table and transactions

Поиск
Список
Период
Сортировка
От Adriaan Joubert
Тема Re: [GENERAL] drop/rename table and transactions
Дата
Msg-id 383B89EA.564DF1EE@albourne.com
обсуждение исходный текст
Ответ на drop/rename table and transactions  (Jaco de Groot <jaco@gospelsjop.com>)
Список pgsql-general
Jaco de Groot wrote:
>
> Hi,
>
> Every now and then I get the following error:
>
>   cannot write block 0 of tablename [username] blind
>
> If this happens, all my database connections get this error when trying
> to access the database and I need to restart postgresql. The problem
> causing this error needs to be something like this:
>
>   create table table2 (col1 text);
>   insert into table2 (col1) values ('some data');
>   begin work;
>   drop table table1;
>   alter table table2 rename to table1;
>   commit;
>

I've seen the same problem. I found that if I always do a vacuum first,
it does not seem to happen. It is the 'alter table .. rename..' that
causes the problem for me.

BTW, are there any plans to implement the rest of the SQL '92 ALTER
TABLE stuff (deleting columns, changing constraints). I'm conjuring up
SQL to do this for my tables, but it is quite painful -- especially if
you have several indices and a SERIAL type in the table.

Adriaan

В списке pgsql-general по дате отправления:

Предыдущее
От: The Hermit Hacker
Дата:
Сообщение: Re: [GENERAL] Re: Is PostgreSQL ready for mission criticalapplications?
Следующее
От: "Kane Tao"
Дата:
Сообщение: Re: [GENERAL] Re: Is PostgreSQL ready for mission critical applications?