- installa il server e il client Postgres 9.3 sul tuo Mac
- esegui
locate initdb
previsto in/Library/PostgreSQL/9.3/bin/initdb
supponiamo che sia lì - crea l'istanza 9.3
/Library/PostgreSQL/9.3/bin/initdb -D /new_data_directory
- esporta 9.4 db
/Library/PostgreSQL/9.3/bin/pg_dump -U 94_username -d 94_database >somefile.dmp
- spegni il vecchio
/Library/PostgreSQL/9.4/bin/pg_ctl stop -m fast
- avvio nuovo
/Library/PostgreSQL/9.3/bin/pg_ctl start
7.create 93 db/Library/PostgreSQL/9.3/bin/psql -U 93_superuser_user -c "create database IMPORT_DB"
- importa 93 db
/Library/PostgreSQL/9.3/bin/psql -U 93_superuser_user -f somefile.dmp IMPORT_DB
Non so se ci sono articoli su questo argomento. So di suonare vecchio stile, ma forse manuali? :) ed esperienza