2012年9月11日 星期二

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 postgres

沒有留言: