You are here: Home Database PostgreSQL Basics make dumps
Search
Advanced Search…
E-Mail

Webmail: webmail.wyden.com

E-Mail Preferences: postfix.wyden.com/users

E-Mail Administration: postfix.wyden.com

Statistics
Total: 473
Total Pages: 286
Total Folders: 87
Total Files: 18
Total Links: 26
Last modification: 19.04.2012 15:21
 

make dumps

by Wyden Silvan last modified 01.12.2009 17:41

make dump

pg_dump -h localhost -p 5432 -U postgres -W dbname > backup.sql

return dump

dropdb -h localhost -p 5432 -U postgres -W dbname
createdb -h localhost -p 5432 -U postgres -W dbname -E UTF-8
psql -f backup.sql -d dbname -h localhost -p 5432 -U postgres -W