I'm using the PostgreSQL database for my Ruby on Rails application (on Mac OS X 10.9).
Are there any detailed instructions on how to upgrade PostgreSQL database?
I'm afraid I will destroy the data in the database or mess it up.
I'm using the PostgreSQL database for my Ruby on Rails application (on Mac OS X 10.9).
Are there any detailed instructions on how to upgrade PostgreSQL database?
I'm afraid I will destroy the data in the database or mess it up.
Despite all answers above, here goes my 5 cents.
It works on any OS and from any-to-any postgres version.
postgresql.conf
->port
from5432
to5433
;bin
folder;pg_dumpall -p 5433 -U <username> | psql -p 5432 -U <username>