PostgreSQL昇級備忘

前端之家收集整理的这篇文章主要介绍了PostgreSQL昇級備忘前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
昨天 Postgresql發佈9.2.0版,立馬昇級現有的9.1.5
年紀大了擔心日又會忘了昇級的步驟,寫記錄留存
本次昇級新舊版本的實體路徑
9.1.5 => D:\DataBase\pgsql\9.1.5
9.2.0 => D:\DataBase\pgsql\9.2.0

1.首先下載zip 免安裝檔,解壓到 D:\DataBase\pgsql\9.2.0
下載頁︰http://www.enterprisedb.com/products-services-training/pgbindownload
2.導出現有資料庫的資料
D:\DataBase\pgsql\9.1.5\bin\pg_dumpall > 20120911.bak
3.停止舊版的 postgresql 運行
D:\DataBase\pgsql\9.1.5\bin\pg_ctl -D"D:\DataBase\pgsql\9.1.5\Data" stop
4.初始化9.2.0的資料庫
D:\DataBase\pgsql\9.2.0\bin\initdb --pgdata="D:\DataBase\pgsql\9.2.0\Data" --encoding=UTF8 --locale=C
5.啟動9.2.0版的Postgresql
D:\DataBase\pgsql\9.2.0\bin\pg_ctl -D "D:\DataBase\pgsql\9.2.0\Data" -l pglog start
6.匯入原有的資料
D:\DataBase\pgsql\9.2.0\bin\psql -f 20120911.bak
原文链接:https://www.f2er.com/postgresql/196417.html

猜你在找的Postgre SQL相关文章