postgresqlデータベース全体のバックアップとリカバリ

1097 ワード

-- mew mew 
pg_dump -U mew -d mew -h localhost > mew.sql
-- 
dropdb -U mew -h localhost  mew
-- 
createdb -U mew -h localhost mew
-- 
psql -U mew -d mew -h localhost < mew.sql

 
転載先:https://www.cnblogs.com/cdyboke/p/7273220.html