Re: [GENERAL] drop/rename table and transactions - Mailing list pgsql-general

From Adriaan Joubert
Subject Re: [GENERAL] drop/rename table and transactions
Date
Msg-id 383B89EA.564DF1EE@albourne.com
Whole thread Raw
In response to drop/rename table and transactions  (Jaco de Groot <jaco@gospelsjop.com>)
List 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 by date:

Previous
From: The Hermit Hacker
Date:
Subject: Re: [GENERAL] Re: Is PostgreSQL ready for mission criticalapplications?
Next
From: "Kane Tao"
Date:
Subject: Re: [GENERAL] Re: Is PostgreSQL ready for mission critical applications?