PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como fazer downgrade/ter uma versão anterior do Postgres DB no Postgres.app

  1. instale o servidor e cliente postgres 9.3 no seu mac
  2. execute locate initdb esperado em /Library/PostgreSQL/9.3/bin/initdb vamos supor que esteja lá
  3. criar instância 9.3 /Library/PostgreSQL/9.3/bin/initdb -D /new_data_directory
  4. exportar 9,4 db /Library/PostgreSQL/9.3/bin/pg_dump -U 94_username -d 94_database >somefile.dmp
  5. encerrar o antigo /Library/PostgreSQL/9.4/bin/pg_ctl stop -m fast
  6. iniciar novo /Library/PostgreSQL/9.3/bin/pg_ctl start 7.criar 93 db /Library/PostgreSQL/9.3/bin/psql -U 93_superuser_user -c "create database IMPORT_DB"
  7. importar 93 db /Library/PostgreSQL/9.3/bin/psql -U 93_superuser_user -f somefile.dmp IMPORT_DB

Não sei se há artigos sobre este tema. Eu sei que pareço antiquado, mas talvez manuais? :) e experiência