postgresql数据库备份与还原


postgresql数据库备份与还原



备份数据库


$ su - postgres

$ pg_dump testdb > testdb.sql


恢复数据库


$ su - postgres

$ createdb testdb

$ psql testdb < testdb.sql



你可能感兴趣的:(postgresql备份与还原)