- Postgres 9.3-Server und -Client auf Ihrem Mac installieren
- führen Sie
locate initdb
aus erwartet in/Library/PostgreSQL/9.3/bin/initdb
nehmen wir an, es ist da - 9.3-Instanz erstellen
/Library/PostgreSQL/9.3/bin/initdb -D /new_data_directory
- export 9.4 db
/Library/PostgreSQL/9.3/bin/pg_dump -U 94_username -d 94_database >somefile.dmp
- Fahren Sie die alte
/Library/PostgreSQL/9.4/bin/pg_ctl stop -m fast
herunter - neu starten
/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"
- import 93 db
/Library/PostgreSQL/9.3/bin/psql -U 93_superuser_user -f somefile.dmp IMPORT_DB
Ich weiß nicht, ob es Artikel zu diesem Thema gibt. Ich weiß, ich klinge altmodisch, aber vielleicht Handbücher? :) und Erfahrung