This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
docu:csheet:sysadm:db:psql:dumping [2020/03/10 21:38] – admin | docu:csheet:sysadm:db:psql:dumping [2021/06/08 13:46] (current) – admin | ||
---|---|---|---|
Line 15: | Line 15: | ||
Restoring comands | Restoring comands | ||
<code bash> | <code bash> | ||
+ | # create user if needed (with password) | ||
+ | createuser -P username | ||
+ | |||
+ | # drop and create the database | ||
dropdb DATABASE | dropdb DATABASE | ||
createdb DATABASE | createdb DATABASE | ||
+ | |||
+ | # restore it from .sql dump file | ||
psql --set ON_ERROR_STOP=on DATABASE < INFILE.sql | psql --set ON_ERROR_STOP=on DATABASE < INFILE.sql | ||
</ | </ |