Is it possible to change the natural order of columns in Postgres 8.1?
I know that you shouldn\'t rely on column order - it\'s not essential to what I am do
If your database is not very big and you can afford some downtime then you can:
pg_dump --create --column-inserts databasename > databasename.pgdump.sqlCREATE TABLE statement in databasename.pgdump.sqlsplit command, edit, then assemble back using catdrop database databasenamepsql --single-transaction -f databasename.pgdump.sql--single-transaction it will be very slowIf you use so called large objects make sure they are included in the dump. I'm not sure if they are by default in 8.1.